Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2021-09-07 09:01:30 +0000
committerAlexander Kurtakov2021-09-07 10:40:55 +0000
commit96078f2b77b10a0d2cb032cc3383a56225d0248f (patch)
tree9816cbd9814f74202eb879e75378705ffa248105
parentc9f0220ab1c6bc8266d6aef32e914b05119bbb87 (diff)
downloadeclipse.platform.releng.aggregator-96078f2b77b10a0d2cb032cc3383a56225d0248f.tar.gz
eclipse.platform.releng.aggregator-96078f2b77b10a0d2cb032cc3383a56225d0248f.tar.xz
eclipse.platform.releng.aggregator-96078f2b77b10a0d2cb032cc3383a56225d0248f.zip
Bug 575858 - Update maven build plugins
Spotbugs, checkstyle and pmd plugins updated to latest versions. Change-Id: I0bf3c2ca30c5eba66e9e7c9986a63042a51b1482 Reviewed-on: https://git.eclipse.org/r/c/platform/eclipse.platform.releng.aggregator/+/185089 Tested-by: Alexander Kurtakov <akurtako@redhat.com> Reviewed-by: Alexander Kurtakov <akurtako@redhat.com>
-rw-r--r--eclipse-platform-parent/pom.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/eclipse-platform-parent/pom.xml b/eclipse-platform-parent/pom.xml
index 3010663a7..7536e998a 100644
--- a/eclipse-platform-parent/pom.xml
+++ b/eclipse-platform-parent/pom.xml
@@ -1063,7 +1063,7 @@
<plugin>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
- <version>4.1.4</version>
+ <version>4.2.2</version>
<configuration>
<targetJDK>${java.version}</targetJDK>
<xmlOutput>true</xmlOutput>
@@ -1094,7 +1094,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
- <version>3.13.0</version>
+ <version>3.14.0</version>
<configuration>
<!-- PMD options -->
<targetJDK>${java.version}</targetJDK>
@@ -1127,7 +1127,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
- <version>3.1.1</version>
+ <version>3.1.2</version>
<configuration>
<consoleOutput>true</consoleOutput>
<failsOnError>false</failsOnError>

Back to the top