Changeset 19251 in josm for trunk/nodist
- Timestamp:
- 2024-10-28T19:18:46+01:00 (6 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/nodist/pom.xml
r19208 r19251 18 18 <sonar.projectKey>JOSM</sonar.projectKey> 19 19 <jmockit.version>1.49.a</jmockit.version> 20 <pmd.version>7. 5.0</pmd.version>20 <pmd.version>7.6.0</pmd.version> 21 21 <jacoco.version>0.8.12</jacoco.version> 22 <checkstyle.version>10.18. 1</checkstyle.version>22 <checkstyle.version>10.18.2</checkstyle.version> 23 23 <spotbugs.version>4.8.6</spotbugs.version> 24 <!-- Note: 2.0.0 requires Java 17, and we'll need to upgrade to it for Java 25 LTS (see JEP 486)--> 25 <junit5-system-exit.version>1.1.2</junit5-system-exit.version> 24 26 </properties> 25 27 <modules> … … 58 60 <groupId>org.apache.maven.plugins</groupId> 59 61 <artifactId>maven-clean-plugin</artifactId> 60 <version>3. 3.2</version>62 <version>3.4.0</version> 61 63 </plugin> 62 64 <plugin> 63 65 <groupId>org.codehaus.mojo</groupId> 64 66 <artifactId>exec-maven-plugin</artifactId> 65 <version>3. 2.0</version>67 <version>3.5.0</version> 66 68 </plugin> 67 69 <plugin> … … 73 75 <groupId>org.apache.maven.plugins</groupId> 74 76 <artifactId>maven-pmd-plugin</artifactId> 75 <version>3.2 3.0</version>77 <version>3.25.0</version> 76 78 <dependencies> 77 79 <dependency> … … 103 105 <groupId>org.apache.maven.plugins</groupId> 104 106 <artifactId>maven-surefire-plugin</artifactId> 105 <version>3. 2.5</version>107 <version>3.5.1</version> 106 108 </plugin> 107 109 <plugin> 108 110 <groupId>com.github.spotbugs</groupId> 109 111 <artifactId>spotbugs-maven-plugin</artifactId> 110 <version>4.8. 5.0</version>112 <version>4.8.6.5</version> 111 113 </plugin> 112 114 <plugin> 113 115 <groupId>org.apache.maven.plugins</groupId> 114 116 <artifactId>maven-checkstyle-plugin</artifactId> 115 <version>3. 3.1</version>117 <version>3.5.0</version> 116 118 <dependencies> 117 119 <dependency> … … 126 128 <groupId>org.apache.maven.plugins</groupId> 127 129 <artifactId>maven-shade-plugin</artifactId> 128 <version>3. 5.3</version>130 <version>3.6.0</version> 129 131 <executions> 130 132 <execution> … … 155 157 <groupId>org.apache.maven.plugins</groupId> 156 158 <artifactId>maven-jar-plugin</artifactId> 157 <version>3.4. 1</version>159 <version>3.4.2</version> 158 160 <configuration> 159 161 <archive> … … 171 173 <groupId>org.codehaus.mojo</groupId> 172 174 <artifactId>buildnumber-maven-plugin</artifactId> 173 <version>3.2. 0</version>175 <version>3.2.1</version> 174 176 </plugin> 175 177 </plugins> … … 179 181 <groupId>org.apache.maven.plugins</groupId> 180 182 <artifactId>maven-enforcer-plugin</artifactId> 181 <version>3. 4.1</version>183 <version>3.5.0</version> 182 184 <executions> 183 185 <execution> … … 192 194 </requireMavenVersion> 193 195 <requireJavaVersion> 194 <version> 8</version>196 <version>${java.lang.version}</version> 195 197 </requireJavaVersion> 196 198 </rules> … … 229 231 </executions> 230 232 </plugin> 233 <plugin> <!-- Adds properties that point at dependency jars. Useful for jmockit and junit5-system-exit --> 234 <artifactId>maven-dependency-plugin</artifactId> 235 <executions> 236 <execution> 237 <goals> 238 <goal>properties</goal> 239 </goals> 240 </execution> 241 </executions> 242 </plugin> 231 243 </plugins> 232 244 </build> … … 242 254 <groupId>org.junit</groupId> 243 255 <artifactId>junit-bom</artifactId> 244 <version>5.11. 0</version>256 <version>5.11.3</version> 245 257 <type>pom</type> 246 258 <scope>import</scope> … … 279 291 <groupId>jakarta.annotation</groupId> 280 292 <artifactId>jakarta.annotation-api</artifactId> 281 <version> 2.1.1</version>293 <version>3.0.0</version> 282 294 <scope>provided</scope> 283 295 </dependency> … … 316 328 <groupId>org.webjars.npm</groupId> 317 329 <artifactId>tag2link</artifactId> 318 <version>2024. 8.21</version>330 <version>2024.10.21</version> 319 331 <scope>provided</scope> 320 332 </dependency> … … 334 346 <groupId>com.ginsberg</groupId> 335 347 <artifactId>junit5-system-exit</artifactId> 336 <version> 1.1.2</version>348 <version>${junit5-system-exit.version}</version> 337 349 <scope>test</scope> 338 350 </dependency> … … 340 352 <groupId>org.wiremock</groupId> 341 353 <artifactId>wiremock</artifactId> 342 <version>3.9. 1</version>354 <version>3.9.2</version> 343 355 <scope>test</scope> 344 356 </dependency> … … 346 358 <groupId>io.github.classgraph</groupId> 347 359 <artifactId>classgraph</artifactId> 348 <version>4.8.17 5</version>360 <version>4.8.177</version> 349 361 <scope>test</scope> 350 362 </dependency> … … 375 387 </dependencies> 376 388 </dependencyManagement> 389 <profiles> 390 <profile> 391 <id>java-17</id> 392 <activation> 393 <jdk>[17</jdk> 394 </activation> 395 <properties> 396 <junit5-system-exit.version>2.0.0</junit5-system-exit.version> 397 </properties> 398 </profile> 399 </profiles> 377 400 </project>
Note:
See TracChangeset
for help on using the changeset viewer.