summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortison <wander4096@gmail.com>2020-03-07 21:28:24 +0800
committertison <wander4096@gmail.com>2020-03-07 21:28:24 +0800
commit8993917776f00160312cb306a35ebcdb220a1ee4 (patch)
tree353f05e4b6073056a60a189a77badb15390df85a
parente6c4c8fd385b0c820083eced6e3bccfa0aafb4b9 (diff)
downloadzookeeper-8993917776f00160312cb306a35ebcdb220a1ee4.tar.gz
ZOOKEEPER-3746. Skip spotbug in website branch
-rw-r--r--pom.xml11
1 files changed, 10 insertions, 1 deletions
diff --git a/pom.xml b/pom.xml
index d84cf28f2..7f46e73f3 100644
--- a/pom.xml
+++ b/pom.xml
@@ -80,7 +80,16 @@
</execution>
</executions>
</plugin>
+
+ <plugin>
+ <!-- spotbugs does not make sense for website -->
+ <groupId>com.github.spotbugs</groupId>
+ <artifactId>spotbugs-maven-plugin</artifactId>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </plugin>
</plugins>
</build>
-</project> \ No newline at end of file
+</project>