|
5 | 5 | <modelVersion>4.0.0</modelVersion> |
6 | 6 | <groupId>org.htmlunit</groupId> |
7 | 7 | <artifactId>neko-htmlunit</artifactId> |
8 | | - <version>4.14.0-SNAPSHOT</version> |
| 8 | + <version>4.14.0</version> |
9 | 9 | <name>HtmlUnit NekoHtml</name> |
10 | 10 | <organization> |
11 | 11 | <name>HtmlUnit</name> |
|
23 | 23 | <maven.compiler.source>8</maven.compiler.source> |
24 | 24 | <maven.compiler.target>8</maven.compiler.target> |
25 | 25 |
|
26 | | - <junit.version>5.13.1</junit.version> |
27 | | - <junit-launcher.version>1.13.1</junit-launcher.version> |
28 | | - |
29 | | - <central-publishing.version>0.8.0</central-publishing.version> |
| 26 | + <!-- test dependencies --> |
| 27 | + <junit.version>5.13.4</junit.version> |
| 28 | + <junit-launcher.version>1.13.4</junit-launcher.version> |
30 | 29 |
|
31 | | - <checkstyle.version>10.25.0</checkstyle.version> |
| 30 | + <!-- quality --> |
| 31 | + <checkstyle.version>10.26.1</checkstyle.version> |
32 | 32 | <spotbugs.version>4.9.3</spotbugs.version> |
33 | | - <pmd.version>7.14.0</pmd.version> |
| 33 | + <pmd.version>7.16.0</pmd.version> |
34 | 34 | <dependencycheck.version>10.0.4</dependencycheck.version> |
| 35 | + |
| 36 | + <!-- plugins --> |
| 37 | + <central-publishing-plugin.version>0.8.0</central-publishing-plugin.version> |
| 38 | + <checkstyle-plugin.version>3.6.0</checkstyle-plugin.version> |
| 39 | + <pmd-plugin.version>3.27.0</pmd-plugin.version> |
| 40 | + <spotbugs-plugin.version>4.9.3.2</spotbugs-plugin.version> |
| 41 | + <gpg-plugin.version>3.2.8</gpg-plugin.version> |
| 42 | + <enforcer-plugin.version>3.6.1</enforcer-plugin.version> |
| 43 | + <jar-plugin.version>3.4.2</jar-plugin.version> |
35 | 44 | </properties> |
36 | 45 |
|
37 | 46 | <dependencies> |
|
67 | 76 | </plugin> |
68 | 77 | <plugin> |
69 | 78 | <artifactId>maven-jar-plugin</artifactId> |
70 | | - <version>3.4.2</version> |
| 79 | + <version>${jar-plugin.version}</version> |
71 | 80 | <configuration> |
72 | 81 | <archive> |
73 | 82 | <manifest> |
|
124 | 133 | <plugin> |
125 | 134 | <groupId>org.apache.maven.plugins</groupId> |
126 | 135 | <artifactId>maven-gpg-plugin</artifactId> |
127 | | - <version>3.2.7</version> |
| 136 | + <version>${gpg-plugin.version}</version> |
128 | 137 | <executions> |
129 | 138 | <execution> |
130 | 139 | <phase>verify</phase> |
|
137 | 146 | <plugin> |
138 | 147 | <groupId>org.sonatype.central</groupId> |
139 | 148 | <artifactId>central-publishing-maven-plugin</artifactId> |
140 | | - <version>${central-publishing.version}</version> |
| 149 | + <version>${central-publishing-plugin.version}</version> |
141 | 150 | <extensions>true</extensions> |
142 | 151 | <configuration> |
143 | 152 | <publishingServerId>central</publishingServerId> |
144 | 153 | </configuration> |
145 | 154 | </plugin> |
146 | | - <!-- |
147 | 155 | <plugin> |
148 | 156 | <groupId>org.owasp</groupId> |
149 | 157 | <artifactId>dependency-check-maven</artifactId> |
|
161 | 169 | </execution> |
162 | 170 | </executions> |
163 | 171 | </plugin> |
164 | | - --> |
165 | 172 | <plugin> |
166 | 173 | <groupId>org.apache.maven.plugins</groupId> |
167 | 174 | <artifactId>maven-checkstyle-plugin</artifactId> |
168 | | - <version>3.6.0</version> |
| 175 | + <version>${checkstyle-plugin.version}</version> |
169 | 176 | <configuration> |
170 | 177 | <configLocation>checkstyle.xml</configLocation> |
171 | 178 | <suppressionsLocation>checkstyle_suppressions.xml</suppressionsLocation> |
|
182 | 189 | <plugin> |
183 | 190 | <groupId>com.github.spotbugs</groupId> |
184 | 191 | <artifactId>spotbugs-maven-plugin</artifactId> |
185 | | - <version>4.9.3.0</version> |
| 192 | + <version>${spotbugs-plugin.version}</version> |
186 | 193 | <dependencies> |
187 | 194 | <dependency> |
188 | 195 | <groupId>com.github.spotbugs</groupId> |
|
197 | 204 | <plugin> |
198 | 205 | <groupId>org.apache.maven.plugins</groupId> |
199 | 206 | <artifactId>maven-pmd-plugin</artifactId> |
200 | | - <version>3.26.0</version> |
| 207 | + <version>${pmd-plugin.version}</version> |
201 | 208 | <dependencies> |
202 | 209 | <dependency> |
203 | 210 | <groupId>net.sourceforge.pmd</groupId> |
|
240 | 247 | <plugin> |
241 | 248 | <groupId>org.apache.maven.plugins</groupId> |
242 | 249 | <artifactId>maven-enforcer-plugin</artifactId> |
243 | | - <version>3.5.0</version> |
| 250 | + <version>${enforcer-plugin.version}</version> |
244 | 251 | <executions> |
245 | 252 | <execution> |
246 | 253 | <configuration> |
|
0 commit comments