Skip to content

Commit 2af5ae7

Browse files
authored
Merge pull request #156 from evolvedbinary/7.x.x/feature/update-dependencies
[7.x.x] Update project dependencies and Maven plugins
2 parents db986fd + de64319 commit 2af5ae7

File tree

9 files changed

+58
-32
lines changed

9 files changed

+58
-32
lines changed

elemental-parent/pom.xml

Lines changed: 37 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,8 @@
9696

9797
<!-- Dependencies -->
9898
<eclipse.angus-activation.version>2.0.3</eclipse.angus-activation.version>
99-
<junit.platform.version>6.0.0</junit.platform.version>
100-
<junit.jupiter.version>6.0.0</junit.jupiter.version>
99+
<junit.platform.version>6.0.1</junit.platform.version>
100+
<junit.jupiter.version>6.0.1</junit.jupiter.version>
101101
<objenesis.version>3.4</objenesis.version>
102102
<jakarta.activation-api.version>2.1.4</jakarta.activation-api.version>
103103
<jaxb.api.version>4.0.4</jaxb.api.version>
@@ -199,6 +199,12 @@
199199
<build>
200200
<pluginManagement>
201201
<plugins>
202+
<plugin>
203+
<inherited>true</inherited>
204+
<groupId>org.apache.maven.plugins</groupId>
205+
<artifactId>maven-enforcer-plugin</artifactId>
206+
<version>3.6.2</version>
207+
</plugin>
202208
<plugin>
203209
<groupId>org.jvnet.jaxb</groupId>
204210
<artifactId>jaxb-maven-plugin</artifactId>
@@ -217,7 +223,7 @@
217223
<plugin>
218224
<groupId>org.apache.maven.plugins</groupId>
219225
<artifactId>maven-jar-plugin</artifactId>
220-
<version>3.4.2</version>
226+
<version>3.5.0</version>
221227
<configuration>
222228
<archive>
223229
<manifest>
@@ -246,7 +252,7 @@
246252
<plugin>
247253
<groupId>org.apache.maven.plugins</groupId>
248254
<artifactId>maven-source-plugin</artifactId>
249-
<version>3.3.1</version>
255+
<version>3.4.0</version>
250256
<configuration>
251257
<archive>
252258
<manifest>
@@ -332,7 +338,7 @@
332338
<plugin>
333339
<groupId>org.owasp</groupId>
334340
<artifactId>dependency-check-maven</artifactId>
335-
<version>12.1.8</version>
341+
<version>12.1.9</version>
336342
<configuration>
337343
<nvdApiKeyEnvironmentVariable>NVD_API_KEY</nvdApiKeyEnvironmentVariable>
338344
<nvdApiServerId>nvd-api</nvdApiServerId>
@@ -364,7 +370,7 @@
364370
<plugin>
365371
<groupId>org.apache.maven.plugins</groupId>
366372
<artifactId>maven-resources-plugin</artifactId>
367-
<version>3.3.1</version>
373+
<version>3.4.0</version>
368374
</plugin>
369375
<plugin>
370376
<groupId>com.code54.mojo</groupId>
@@ -402,7 +408,7 @@
402408
<plugin>
403409
<groupId>org.apache.maven.plugins</groupId>
404410
<artifactId>maven-release-plugin</artifactId>
405-
<version>3.1.1</version>
411+
<version>3.3.1</version>
406412
<configuration>
407413
<autoVersionSubmodules>true</autoVersionSubmodules>
408414
<tagNameFormat>elemental-@{project.version}</tagNameFormat>
@@ -449,7 +455,7 @@
449455
<plugin>
450456
<groupId>org.codehaus.mojo</groupId>
451457
<artifactId>versions-maven-plugin</artifactId>
452-
<version>2.19.1</version>
458+
<version>2.20.1</version>
453459
</plugin>
454460
<plugin>
455461
<groupId>org.apache.maven.plugins</groupId>
@@ -498,7 +504,7 @@
498504
<user.country>UK</user.country>
499505
<user.language>en</user.language>
500506
<user.timezone>Europe/Berlin</user.timezone>
501-
<java.locale.providers>JRE,CLDR,SPI</java.locale.providers>
507+
<java.locale.providers>CLDR,SPI</java.locale.providers>
502508
<log4j.configurationFile>${project.build.testOutputDirectory}/log4j2.xml</log4j.configurationFile>
503509
</systemPropertyVariables>
504510
<includes>
@@ -533,12 +539,32 @@
533539
<plugin>
534540
<groupId>org.sonarsource.scanner.maven</groupId>
535541
<artifactId>sonar-maven-plugin</artifactId>
536-
<version>5.2.0.4988</version>
542+
<version>5.5.0.6356</version>
537543
</plugin>
538544
</plugins>
539545
</pluginManagement>
540546

541547
<plugins>
548+
<plugin>
549+
<groupId>org.apache.maven.plugins</groupId>
550+
<artifactId>maven-enforcer-plugin</artifactId>
551+
<executions>
552+
<execution>
553+
<id>enforce-maven-version</id>
554+
<goals>
555+
<goal>enforce</goal>
556+
</goals>
557+
<configuration>
558+
<rules>
559+
<requireMavenVersion>
560+
<version>3.9.0</version>
561+
</requireMavenVersion>
562+
</rules>
563+
<fail>true</fail>
564+
</configuration>
565+
</execution>
566+
</executions>
567+
</plugin>
542568
<plugin>
543569
<groupId>com.mycila</groupId>
544570
<artifactId>license-maven-plugin</artifactId>
@@ -787,4 +813,4 @@
787813
</repository>
788814
</distributionManagement>
789815

790-
</project>
816+
</project>

exist-core/pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
<dependency>
9393
<groupId>com.fasterxml.jackson.core</groupId>
9494
<artifactId>jackson-core</artifactId>
95-
<version>2.20.0</version>
95+
<version>2.20.1</version>
9696
</dependency>
9797

9898
<dependency>
@@ -222,11 +222,11 @@
222222
<dependency>
223223
<groupId>org.bouncycastle</groupId>
224224
<artifactId>bcprov-jdk18on</artifactId>
225-
<version>1.82</version>
225+
<version>1.83</version>
226226
</dependency>
227227

228228
<dependency>
229-
<groupId>org.lz4</groupId>
229+
<groupId>at.yawk.lz4</groupId>
230230
<artifactId>lz4-java</artifactId>
231231
<version>${lz4-java.version}</version>
232232
</dependency>
@@ -245,7 +245,7 @@
245245
<dependency>
246246
<groupId>com.fasterxml.uuid</groupId>
247247
<artifactId>java-uuid-generator</artifactId>
248-
<version>5.1.1</version>
248+
<version>5.2.0</version>
249249
</dependency>
250250

251251
<dependency>
@@ -312,7 +312,7 @@
312312
<dependency>
313313
<groupId>org.apache.commons</groupId>
314314
<artifactId>commons-pool2</artifactId>
315-
<version>2.12.1</version>
315+
<version>2.13.0</version>
316316
</dependency>
317317

318318
<dependency>
@@ -514,7 +514,7 @@
514514
<dependency>
515515
<groupId>org.quartz-scheduler</groupId>
516516
<artifactId>quartz</artifactId>
517-
<version>2.5.1</version>
517+
<version>2.5.2</version>
518518
<!-- exclude Quartz SQL connectivity options -->
519519
<exclusions>
520520
<exclusion>

exist-distribution/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -712,9 +712,9 @@
712712
</plugin>
713713

714714
<plugin>
715-
<groupId>org.exist-db.maven.plugins</groupId>
716-
<artifactId>public-xar-repo-plugin</artifactId>
717-
<version>1.2.0</version>
715+
<groupId>com.evolvedbinary.maven.plugins</groupId>
716+
<artifactId>expath-package-repository-plugin</artifactId>
717+
<version>1.3.1</version>
718718
<executions>
719719
<execution>
720720
<id>fetch-xars</id>
@@ -725,7 +725,7 @@
725725
<configuration>
726726
<repoUri>${public.xar.repo.uri}</repoUri>
727727
<outputDirectory>${expath.pkg.dir}</outputDirectory>
728-
<existDbVersion>${project.version}</existDbVersion>
728+
<elementalVersion>${project.version}</elementalVersion>
729729
<packages>
730730
<package>
731731
<abbrev>dashboard</abbrev>

exist-parent/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
<icu.version>59.1</icu.version>
9999
<izpack.version>5.2.4</izpack.version>
100100
<jline.version>3.30.6</jline.version>
101-
<lz4-java.version>1.8.0</lz4-java.version>
101+
<lz4-java.version>1.10.2</lz4-java.version>
102102
<jetty.version>11.0.26</jetty.version>
103103
<log4j.version>2.25.2</log4j.version>
104104
<lucene.version>4.10.4</lucene.version>
@@ -169,13 +169,13 @@
169169
<dependency>
170170
<groupId>commons-codec</groupId>
171171
<artifactId>commons-codec</artifactId>
172-
<version>1.19.0</version>
172+
<version>1.20.0</version>
173173
</dependency>
174174

175175
<dependency>
176176
<groupId>commons-io</groupId>
177177
<artifactId>commons-io</artifactId>
178-
<version>2.20.0</version>
178+
<version>2.21.0</version>
179179
</dependency>
180180

181181
<dependency>
@@ -378,7 +378,7 @@
378378
<dependency>
379379
<groupId>net.bytebuddy</groupId>
380380
<artifactId>byte-buddy</artifactId>
381-
<version>1.17.8</version>
381+
<version>1.18.2</version>
382382
</dependency>
383383

384384
<dependency>
@@ -509,7 +509,7 @@
509509
<plugin>
510510
<groupId>org.apache.maven.plugins</groupId>
511511
<artifactId>maven-assembly-plugin</artifactId>
512-
<version>3.7.1</version>
512+
<version>3.8.0</version>
513513
<configuration>
514514
<archive>
515515
<manifest>

extensions/debuggee/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@
185185
<configuration>
186186
<argLine>@{jacocoArgLine}</argLine>
187187
<systemPropertyVariables>
188-
<java.locale.providers>JRE,CLDR,SPI</java.locale.providers>
188+
<java.locale.providers>CLDR,SPI</java.locale.providers>
189189
<log4j.configurationFile>${project.build.testOutputDirectory}/log4j2.xml</log4j.configurationFile>
190190
<exist.jetty.standalone.webapp.dir>${project.build.testOutputDirectory}/standalone-webapp</exist.jetty.standalone.webapp.dir>
191191
</systemPropertyVariables>

extensions/indexes/spatial/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
</scm>
7171

7272
<properties>
73-
<geotools.version>34.0</geotools.version>
73+
<geotools.version>34.1</geotools.version>
7474
</properties>
7575

7676
<dependencies>

extensions/modules/compression/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
<dependency>
8585
<groupId>org.apache.commons</groupId>
8686
<artifactId>commons-compress</artifactId>
87-
<version>1.27.1</version>
87+
<version>1.28.0</version>
8888
</dependency>
8989

9090
<dependency>

extensions/modules/mail/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
<properties>
7373
<jakarta.mail-api.version>2.1.5</jakarta.mail-api.version>
7474
<eclipse.angus-mail.version>2.0.5</eclipse.angus-mail.version>
75-
<greenmail.version>2.1.7</greenmail.version>
75+
<greenmail.version>2.1.8</greenmail.version>
7676
</properties>
7777

7878
<dependencies>
@@ -288,4 +288,4 @@
288288
</plugins>
289289
</build>
290290

291-
</project>
291+
</project>

extensions/modules/sql/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@
123123
<dependency>
124124
<groupId>com.h2database</groupId>
125125
<artifactId>h2</artifactId>
126-
<version>2.3.232</version>
126+
<version>2.4.240</version>
127127
<scope>test</scope>
128128
</dependency>
129129

0 commit comments

Comments
 (0)