|
1 | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
2 | 2 | <modelVersion>4.0.0</modelVersion> |
3 | 3 |
|
4 | | - <parent> |
5 | | - <groupId>org.dhatim</groupId> |
6 | | - <artifactId>root-oss</artifactId> |
7 | | - <version>21.2.0</version> |
8 | | - </parent> |
9 | | - |
10 | 4 | <groupId>org.dhatim</groupId> |
11 | 5 | <artifactId>hamcrest-postgresql</artifactId> |
12 | 6 | <version>0-SNAPSHOT</version> |
|
28 | 22 | </scm> |
29 | 23 |
|
30 | 24 | <properties> |
31 | | - <maven.compiler.source>1.8</maven.compiler.source> |
32 | | - <maven.compiler.target>1.8</maven.compiler.target> |
| 25 | + <maven.compiler.source>18</maven.compiler.source> |
| 26 | + <maven.compiler.target>18</maven.compiler.target> |
33 | 27 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 28 | + <antlr.version>4.10.1</antlr.version> |
34 | 29 | </properties> |
35 | 30 |
|
36 | 31 | <dependencies> |
37 | 32 | <dependency> |
38 | 33 | <groupId>junit</groupId> |
39 | 34 | <artifactId>junit</artifactId> |
| 35 | + <version>4.13.2</version> |
40 | 36 | <scope>test</scope> |
41 | 37 | </dependency> |
42 | 38 | <dependency> |
|
47 | 43 | <dependency> |
48 | 44 | <groupId>org.antlr</groupId> |
49 | 45 | <artifactId>antlr4-runtime</artifactId> |
| 46 | + <version>${antlr.version}</version> |
50 | 47 | </dependency> |
51 | 48 | </dependencies> |
52 | 49 |
|
|
55 | 52 | <plugin> |
56 | 53 | <groupId>org.antlr</groupId> |
57 | 54 | <artifactId>antlr4-maven-plugin</artifactId> |
| 55 | + <version>${antlr.version}</version> |
58 | 56 | <executions> |
59 | 57 | <execution> |
60 | 58 | <id>antlr</id> |
|
72 | 70 | <plugin> |
73 | 71 | <groupId>org.codehaus.mojo</groupId> |
74 | 72 | <artifactId>build-helper-maven-plugin</artifactId> |
| 73 | + <version>3.3.0</version> |
75 | 74 | <executions> |
76 | 75 | <execution> |
77 | 76 | <id>add-sources</id> |
|
89 | 88 | <plugin> |
90 | 89 | <groupId>org.apache.maven.plugins</groupId> |
91 | 90 | <artifactId>maven-javadoc-plugin</artifactId> |
| 91 | + <version>3.4.0</version> |
92 | 92 | <configuration> |
93 | 93 | <show>public</show> |
94 | 94 | </configuration> |
|
112 | 112 | <plugin> |
113 | 113 | <groupId>org.sonatype.plugins</groupId> |
114 | 114 | <artifactId>nexus-staging-maven-plugin</artifactId> |
| 115 | + <version>1.6.13</version> |
115 | 116 | <extensions>true</extensions> |
116 | 117 | <configuration> |
117 | 118 | <serverId>ossrh</serverId> |
|
121 | 122 | </plugin> |
122 | 123 | <plugin> |
123 | 124 | <artifactId>maven-source-plugin</artifactId> |
| 125 | + <version>3.2.1</version> |
124 | 126 | <executions> |
125 | 127 | <execution> |
126 | 128 | <id>attach-sources</id> |
|
132 | 134 | </plugin> |
133 | 135 | <plugin> |
134 | 136 | <artifactId>maven-gpg-plugin</artifactId> |
| 137 | + <version>3.0.1</version> |
135 | 138 | <executions> |
136 | 139 | <execution> |
137 | 140 | <id>sign-artifacts</id> |
|
0 commit comments