Skip to content

Commit

Permalink
update plugin versions
Browse files Browse the repository at this point in the history
  • Loading branch information
LitschiW committed Nov 26, 2023
1 parent 3e4dbc1 commit 16ef736
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -179,15 +179,14 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>3.3.0</version>
<version>3.3.1</version>
<dependencies>
<dependency>
<groupId>com.puppycrawl.tools</groupId>
<artifactId>checkstyle</artifactId>
<version>10.12.5</version> <!-- TODO: update to >10 when moving to java >8 -->
<version>10.12.5</version>
<scope>compile</scope>
</dependency>

<!-- checkstyle plugin requires an outdated version of junit-vintage, this dependency overwrites that -->
<dependency>
<groupId>org.junit.vintage</groupId>
Expand Down Expand Up @@ -219,13 +218,13 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M7</version>
<version>3.2.2</version>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.4.1</version>
<version>3.6.2</version>
<executions>
<execution>
<id>attach-javadocs</id>
Expand All @@ -244,9 +243,10 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.10.1</version>
<configuration> <!-- Prevent NoSuchFileException during verify when having a dummy package-info.java -->
<version>3.11.0</version>
<configuration>
<compilerArgs>
<!-- Prevent NoSuchFileException during verify when having a dummy package-info.java -->
<arg>-Xpkginfo:always</arg>
</compilerArgs>
</configuration>
Expand All @@ -255,7 +255,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.3.0</version>
<version>3.5.1</version>
<configuration>
<transformers>
<transformer
Expand Down

0 comments on commit 16ef736

Please sign in to comment.