Skip to content

Commit

Permalink
Upgrade maven plugins (#57)
Browse files Browse the repository at this point in the history
* upgrade `gpg` plugin to `3.2.2`

* upgrade `compiler` plugin to `3.13.0`

* upgrade `resources` plugin to `3.3.1`

* upgrade `jar` plugin to `3.3.0`

* upgrade `checkstyle` plugin to `3.3.1`

* upgrade `surefire` plugin to `3.2.5`

* upgrade `junit` to `5.9.0`
  • Loading branch information
koneru9999 authored Apr 10, 2024
1 parent d5f3808 commit c6b16f5
Showing 1 changed file with 7 additions and 12 deletions.
19 changes: 7 additions & 12 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<logback.version>1.2.13</logback.version>
<slf4j.version>1.7.36</slf4j.version>
<usb4java.version>1.3.0</usb4java.version>
<junit.jupiter.version>5.1.1</junit.jupiter.version>
<junit.jupiter.version>5.9.0</junit.jupiter.version>
</properties>
<profiles>
<profile>
Expand Down Expand Up @@ -74,7 +74,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<version>3.2.2</version>
<executions>
<execution>
<id>sign-artifacts</id>
Expand Down Expand Up @@ -113,7 +113,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<version>3.13.0</version>
<configuration>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
Expand All @@ -122,7 +122,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.0.1</version>
<version>3.3.1</version>
<executions>
<execution>
<id>filter-resources</id>
Expand Down Expand Up @@ -164,7 +164,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.0.2</version>
<version>3.3.0</version>
<configuration>
<archive>
<manifestEntries>
Expand Down Expand Up @@ -216,7 +216,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>3.1.2</version>
<version>3.3.1</version>
<dependencies>
<dependency>
<groupId>com.puppycrawl.tools</groupId>
Expand All @@ -240,13 +240,8 @@
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19.1</version>
<version>3.2.5</version>
<dependencies>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-surefire-provider</artifactId>
<version>1.1.1</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
Expand Down

0 comments on commit c6b16f5

Please sign in to comment.