Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion kotlin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.12.1</version>
<version>3.14.1</version>
<executions>
<!-- Replacing default-compile as it is treated specially by maven -->
<execution>
Expand Down
6 changes: 3 additions & 3 deletions maven/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>3.11.0</version>
<version>3.15.2</version>
<scope>provided</scope>
</dependency>

Expand Down Expand Up @@ -108,7 +108,7 @@
<!-- https://maven.apache.org/plugin-testing/maven-plugin-testing-harness/getting-started/index.html -->
<groupId>org.apache.maven.plugin-testing</groupId>
<artifactId>maven-plugin-testing-harness</artifactId>
<version>3.3.0</version>
<version>3.4.0</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -143,7 +143,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
<version>3.11.0</version>
<version>3.15.2</version>
<executions>
<execution>
<id>mojo-descriptor</id>
Expand Down
8 changes: 4 additions & 4 deletions parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,11 @@
<!-- https://mvnrepository.com/artifact/com.github.spotbugs/spotbugs-maven-plugin -->
<spotbugs.version>4.8.2.0</spotbugs.version>
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-pmd-plugin -->
<maven-pmd-plugin.version>3.21.2</maven-pmd-plugin.version>
<maven-pmd-plugin.version>3.28.0</maven-pmd-plugin.version>
<!-- https://mvnrepository.com/artifact/net.sourceforge.pmd/pmd -->
<pmd.version>6.55.0</pmd.version>
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-checkstyle-plugin -->
<maven-checkstyle-plugin.version>3.3.1</maven-checkstyle-plugin.version>
<maven-checkstyle-plugin.version>3.6.0</maven-checkstyle-plugin.version>
<!-- https://mvnrepository.com/artifact/com.puppycrawl.tools/checkstyle -->
<checkstyle.version>10.20.1</checkstyle.version>
<!-- https://mvnrepository.com/artifact/com.mycila/license-maven-plugin -->
Expand Down Expand Up @@ -698,7 +698,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.0</version>
<version>3.2.8</version>
<executions>
<execution>
<id>sign-artifacts</id>
Expand All @@ -712,7 +712,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.6.3</version>
<version>3.12.0</version>
<configuration>
<!-- http://blog.joda.org/2014/02/turning-off-doclint-in-jdk-8-javadoc.html -->
<doclint>none</doclint>
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@
<!-- <eclipse.jt.core.version>3.26.0</eclipse.jt.core.version> -->
<!-- <eclipse.jt.core.version>3.30.0</eclipse.jt.core.version> -->
<!-- <eclipse.jdt.core.manipulation.version>1.16.100</eclipse.jdt.core.manipulation.version> -->
<maven.version>3.9.6</maven.version>
<maven-resolver.version>1.9.18</maven-resolver.version>
<maven.version>3.9.11</maven.version>
<maven-resolver.version>1.9.24</maven-resolver.version>

<!-- Not provided as spotless is not executed through maven in CleanThat -->
<maven.scope>compile</maven.scope>
Expand Down Expand Up @@ -237,7 +237,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.12.1</version>
<version>3.14.1</version>
<configuration>
<compilerArgs>
<!-- https://errorprone.info/docs/installation -->
Expand Down
Loading