This is an automated email from the ASF dual-hosted git repository.
jialiang pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/ambari.git
The following commit(s) were added to refs/heads/trunk by this push:
new ae7daf3e99 AMBARI-26275: NoClassesFoundToAnalyzeException when
compiling ambari with jdk17 #3924
ae7daf3e99 is described below
commit ae7daf3e998eaada414c6ce5005d57552e4ad02e
Author: Peng Lu <[email protected]>
AuthorDate: Sun Jan 12 11:06:40 2025 +0800
AMBARI-26275: NoClassesFoundToAnalyzeException when compiling ambari with
jdk17 #3924
---
ambari-server/pom.xml | 27 ++++++++++++++++++---------
1 file changed, 18 insertions(+), 9 deletions(-)
diff --git a/ambari-server/pom.xml b/ambari-server/pom.xml
index 222f0e7f19..562926db6e 100644
--- a/ambari-server/pom.xml
+++ b/ambari-server/pom.xml
@@ -654,23 +654,32 @@
</configuration>
</plugin>
<plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>findbugs-maven-plugin</artifactId>
- <version>3.0.5</version>
- <configuration>
- <failOnError>false</failOnError>
- <threshold>Low</threshold>
-
<findbugsXmlOutputDirectory>${project.basedir}/target/findbugs</findbugsXmlOutputDirectory>
-
<excludeFilterFile>${project.basedir}/findbugs.exclude.xml</excludeFilterFile>
- </configuration>
+ <groupId>com.github.spotbugs</groupId>
+ <artifactId>spotbugs-maven-plugin</artifactId>
+ <version>4.8.6.4</version>
<executions>
<execution>
+ <id>spotbugs-check</id>
<phase>verify</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
+ <configuration>
+ <failOnError>false</failOnError>
+ <threshold>Low</threshold>
+ <xmlOutput>true</xmlOutput>
+ <xmlOutputDirectory>target/spotbugs</xmlOutputDirectory>
+
<excludeFilterFile>${project.basedir}/findbugs.exclude.xml</excludeFilterFile>
+ </configuration>
+ <dependencies>
+ <dependency>
+ <groupId>com.github.spotbugs</groupId>
+ <artifactId>spotbugs</artifactId>
+ <version>4.8.6</version>
+ </dependency>
+ </dependencies>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]