Skip to content

Commit

Permalink
Upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ibauersachs committed Nov 11, 2023
1 parent c2b28b8 commit 730ed17
Showing 1 changed file with 19 additions and 7 deletions.
26 changes: 19 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,14 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<target.jdk>8</target.jdk>

<org.junit.version>5.10.0</org.junit.version>
<org.junit.version>5.10.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.30</lombok.version>
<jna.version>5.13.0</jna.version>
<bouncycastle.version>1.76</bouncycastle.version>
<vertx.version>4.4.4</vertx.version>
<vertx.version>4.4.6</vertx.version>

<sonar.projectKey>dnsjava_dnsjava</sonar.projectKey>
<sonar.organization>dnsjava</sonar.organization>
Expand Down Expand Up @@ -149,7 +149,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.5.0</version>
<version>3.6.2</version>
<configuration>
<source>${target.jdk}</source>
<debug>true</debug>
Expand All @@ -162,7 +162,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.2.1</version>
<version>3.2.2</version>
<configuration>
<rerunFailingTestsCount>3</rerunFailingTestsCount>
<includes>
Expand All @@ -179,7 +179,7 @@
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.10</version>
<version>0.8.11</version>
<executions>
<execution>
<id>prepare-agent</id>
Expand All @@ -200,7 +200,7 @@
<plugin>
<groupId>com.github.siom79.japicmp</groupId>
<artifactId>japicmp-maven-plugin</artifactId>
<version>0.17.2</version>
<version> 0.18.3</version>
<configuration>
<newVersion>
<file>
Expand Down Expand Up @@ -263,7 +263,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>3.3.0</version>
<version>3.3.1</version>
<executions>
<execution>
<id>check</id>
Expand Down Expand Up @@ -298,6 +298,18 @@
<version>3.1.1</version>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>3.3.2</version>
</plugin>

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

<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
Expand Down

0 comments on commit 730ed17

Please sign in to comment.