Skip to content

Commit 2c8a66e

Browse files
committed
Update dependencies and plugins
1 parent 32d9f98 commit 2c8a66e

3 files changed

Lines changed: 24 additions & 21 deletions

File tree

commons-core/pom.xml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,19 @@
1616
<description>A library of classes and methods common to all Atlanmod projects</description>
1717

1818
<properties>
19-
<caffeine.version>3.1.0</caffeine.version>
20-
<zah.version>0.15</zah.version>
19+
<caffeine.version>3.1.2</caffeine.version>
20+
<zah.version>0.16</zah.version>
2121
<fst.version>2.57</fst.version>
2222
<!-- WARNING: Fst versions > 3.0.0 are compiled with jdk 14 -->
23-
<slf4j.version>1.7.36</slf4j.version>
23+
<slf4j.version>2.0.6</slf4j.version>
2424
</properties>
2525

2626
<dependencies>
2727

2828
<dependency>
2929
<groupId>org.jetbrains</groupId>
3030
<artifactId>annotations</artifactId>
31-
<version>23.0.0</version>
31+
<version>24.0.0</version>
3232
<scope>provided</scope>
3333
<optional>true</optional><!-- needed only for annotations -->
3434
</dependency>
@@ -160,6 +160,7 @@
160160
<artifactId>maven-bundle-plugin</artifactId>
161161
<configuration>
162162
<instructions>
163+
<jpms-module-info>org.atlanmod.commons.core</jpms-module-info>
163164
<Bundle-SymbolicName>${project.groupId}</Bundle-SymbolicName>
164165
<Import-Package>
165166
org.osgi.framework

commons-testing/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<description>A library of classes and methods for testing</description>
1717

1818
<properties>
19-
<slf4j.version>1.7.36</slf4j.version>
19+
<slf4j.version>2.0.6</slf4j.version>
2020
</properties>
2121

2222
<dependencies>

pom.xml

Lines changed: 18 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -103,11 +103,11 @@
103103
<javax-annotations.version>3.0.2</javax-annotations.version>
104104

105105
<osgi.version>8.0.0</osgi.version>
106-
<osgi-annotations.version>1.5.0</osgi-annotations.version><!-- 1.4.0: requires OSGi R7 -->
106+
<osgi-annotations.version>1.5.1</osgi-annotations.version><!-- 1.4.0: requires OSGi R7 -->
107107

108-
<assertj.version>3.22.0</assertj.version>
109-
<mockito.version>4.5.1</mockito.version>
110-
<junit.version>5.8.2</junit.version>
108+
<assertj.version>3.24.2</assertj.version>
109+
<mockito.version>5.0.0</mockito.version>
110+
<junit.version>5.9.2</junit.version>
111111
</properties>
112112

113113
<dependencies>
@@ -253,7 +253,7 @@
253253
<plugin>
254254
<groupId>org.apache.felix</groupId>
255255
<artifactId>maven-bundle-plugin</artifactId>
256-
<version>5.1.6</version>
256+
<version>5.1.8</version>
257257
<extensions>true</extensions>
258258
<configuration>
259259
<exportScr>true</exportScr>
@@ -302,19 +302,19 @@
302302
<plugin>
303303
<groupId>org.apache.maven.plugins</groupId>
304304
<artifactId>maven-deploy-plugin</artifactId>
305-
<version>3.0.0-M1</version>
305+
<version>3.0.0</version>
306306
</plugin>
307307

308308
<plugin>
309309
<groupId>org.apache.maven.plugins</groupId>
310310
<artifactId>maven-dependency-plugin</artifactId>
311-
<version>3.3.0</version>
311+
<version>3.5.0</version>
312312
</plugin>
313313

314314
<plugin>
315315
<groupId>org.apache.maven.plugins</groupId>
316316
<artifactId>maven-install-plugin</artifactId>
317-
<version>3.0.0-M1</version>
317+
<version>3.1.0</version>
318318
</plugin>
319319

320320
<plugin>
@@ -326,7 +326,7 @@
326326
<plugin>
327327
<groupId>org.apache.maven.plugins</groupId>
328328
<artifactId>maven-jar-plugin</artifactId>
329-
<version>3.2.2</version>
329+
<version>3.3.0</version>
330330
<configuration>
331331
<skipIfEmpty>true</skipIfEmpty>
332332
</configuration>
@@ -336,7 +336,7 @@
336336
<!-- `deploy-javadoc` profile comes in addition to this configuration -->
337337
<groupId>org.apache.maven.plugins</groupId>
338338
<artifactId>maven-javadoc-plugin</artifactId>
339-
<version>3.4.0</version>
339+
<version>3.4.1</version>
340340
<configuration>
341341
<additionalOptions>-Xdoclint:none</additionalOptions>
342342
<failOnError>false</failOnError>
@@ -350,7 +350,7 @@
350350
<plugin>
351351
<groupId>org.apache.maven.plugins</groupId>
352352
<artifactId>maven-resources-plugin</artifactId>
353-
<version>3.2.0</version>
353+
<version>3.3.0</version>
354354
</plugin>
355355

356356
<plugin>
@@ -362,7 +362,7 @@
362362
<plugin>
363363
<groupId>org.apache.maven.plugins</groupId>
364364
<artifactId>maven-surefire-plugin</artifactId>
365-
<version>3.0.0-M5</version>
365+
<version>3.0.0-M7</version>
366366
<configuration>
367367
<!-- Property @{argLine} : created by jacoco:prepare-agent -->
368368
<argLine>@{argLine} ${argLine.global}</argLine>
@@ -372,13 +372,15 @@
372372
<java.util.logging.SimpleFormatter.format>[%4$s] %5$s%6$s%n
373373
</java.util.logging.SimpleFormatter.format>
374374
</systemPropertyVariables>
375+
<!-- allow to use unnamed modules -->
376+
<useModulePath>false</useModulePath>
375377
</configuration>
376378
</plugin>
377379

378380
<plugin> <!-- Disable by default -->
379381
<groupId>org.apache.maven.plugins</groupId>
380382
<artifactId>maven-site-plugin</artifactId>
381-
<version>3.12.0</version>
383+
<version>3.12.1</version>
382384
<configuration>
383385
<skip>true</skip>
384386
<skipDeploy>true</skipDeploy>
@@ -388,7 +390,7 @@
388390
<plugin>
389391
<groupId>org.codehaus.mojo</groupId>
390392
<artifactId>versions-maven-plugin</artifactId>
391-
<version>2.11.0</version>
393+
<version>2.14.2</version>
392394
<configuration>
393395
<rulesUri>https://www.atlanmod.org/Commons/versions.xml</rulesUri>
394396
</configuration>
@@ -397,13 +399,13 @@
397399
<plugin>
398400
<groupId>org.apache.maven.plugins</groupId>
399401
<artifactId>maven-enforcer-plugin</artifactId>
400-
<version>3.0.0</version>
402+
<version>3.1.0</version>
401403
</plugin>
402404

403405
<plugin>
404406
<groupId>com.github.spotbugs</groupId>
405407
<artifactId>spotbugs-maven-plugin</artifactId>
406-
<version>4.5.3.0</version>
408+
<version>4.7.3.0</version>
407409
</plugin>
408410

409411
</plugins>

0 commit comments

Comments
 (0)