Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
157 changes: 78 additions & 79 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,14 @@
<maven.compiler.showCompilationChanges>true</maven.compiler.showCompilationChanges>
<maven.compiler.createMissingPackageInfoClass>false</maven.compiler.createMissingPackageInfoClass>

<org.junit.version>5.11.4</org.junit.version>
<org.junit.version>5.13.1</org.junit.version>
<!-- Stay on 4.x for Java 8 compatibility. Newer versions are used for Java 11+ builds -->
<mockito.version>4.11.0</mockito.version>
<slf4j.version>1.7.36</slf4j.version>
<lombok.version>1.18.36</lombok.version>
<jna.version>5.16.0</jna.version>
<bouncycastle.version>1.79</bouncycastle.version>
<vertx.version>4.5.11</vertx.version>
<lombok.version>1.18.38</lombok.version>
<jna.version>5.17.0</jna.version>
<bouncycastle.version>1.81</bouncycastle.version>
<vertx.version>4.5.16</vertx.version>
<!-- Stay on 1.7 for Java 8 compatibility. Newer versions are used for Java 11+ builds -->
<google-java-format.version>1.7</google-java-format.version>
<spotless.version>2.30.0</spotless.version>
Expand All @@ -66,6 +66,52 @@
</properties>

<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.1.4</version>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.8.1</version>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>3.1.1</version>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.3.1</version>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>3.1.4</version>
</plugin>

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>3.6.1</version>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.21.0</version>
</plugin>
</plugins>
</pluginManagement>

<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
Expand Down Expand Up @@ -111,7 +157,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
<version>3.14.0</version>
<configuration>
<compilerArgs>
<arg>-Xlint:all,-serial,-processing</arg>
Expand Down Expand Up @@ -237,7 +283,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.5.2</version>
<version>3.5.3</version>
<configuration>
<rerunFailingTestsCount>3</rerunFailingTestsCount>
<includes>
Expand All @@ -254,7 +300,7 @@
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.12</version>
<version>0.8.13</version>
<executions>
<execution>
<id>prepare-agent</id>
Expand Down Expand Up @@ -292,7 +338,7 @@
<plugin>
<groupId>com.github.siom79.japicmp</groupId>
<artifactId>japicmp-maven-plugin</artifactId>
<version>0.23.0</version>
<version>0.23.1</version>
<configuration>
<newVersion>
<file>
Expand Down Expand Up @@ -422,16 +468,10 @@
</dependencies>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.1.3</version>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>3.4.0</version>
<version>3.5.0</version>
<configuration>
<filesets>
<fileset>
Expand All @@ -445,12 +485,6 @@
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.21.0</version>
</plugin>

<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
Expand Down Expand Up @@ -498,24 +532,6 @@
</executions>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.3.1</version>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>3.1.3</version>
</plugin>

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>3.6.0</version>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
Expand Down Expand Up @@ -627,7 +643,7 @@
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.27.0</version>
<version>3.27.3</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -645,7 +661,7 @@
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy-agent</artifactId>
<version>1.15.11</version>
<version>1.17.6</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -676,7 +692,7 @@
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.18.0</version>
<version>2.19.0</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -714,7 +730,7 @@
</activation>

<properties>
<mockito.version>5.14.2</mockito.version>
<mockito.version>5.18.0</mockito.version>
<!--
Stay on 1.22:
- 1.23 introduces a change that is inconsistent with 1.7 used for Java 8
Expand Down Expand Up @@ -809,7 +825,8 @@
</profile>

<profile>
<!-- Hide java11 from IDEA as it still doesn't understand Multi-Release jars -->
<!-- Required only for maven-source-plugin, but needs to be hidden from IntelliJ -->
<!-- https://github.com/apache/maven-source-plugin/issues/215 -->
<id>java11-not-idea</id>
<activation>
<activeByDefault>false</activeByDefault>
Expand Down Expand Up @@ -842,40 +859,6 @@
</build>
</profile>

<profile>
<!-- Include java11 in IDEA before Java 18 as it still doesn't understand Multi-Release jars -->
<id>java11-idea</id>
<activation>
<activeByDefault>false</activeByDefault>
<jdk>[11,18)</jdk>
<property>
<name>idea.version</name>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>add-java11-source</id>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>src/main/java11</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>

<profile>
<id>java18</id>
<activation>
Expand Down Expand Up @@ -934,7 +917,23 @@
</additionalClasspathElements>
</configuration>
</plugin>
</plugins>
</build>
</profile>

<profile>
<!-- Required only for maven-source-plugin, but needs to be hidden from IntelliJ -->
<!-- https://github.com/apache/maven-source-plugin/issues/215 -->
<id>java18-not-idea</id>
<activation>
<activeByDefault>false</activeByDefault>
<jdk>[18,)</jdk>
<property>
<name>!idea.version</name>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
Expand Down
Loading