summaryrefslogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
authorAndreas Beeker <kiwiwings@apache.org>2018-12-12 23:25:07 +0000
committerAndreas Beeker <kiwiwings@apache.org>2018-12-12 23:25:07 +0000
commitfb1fd90d8ae71600b06d4b5c7e7ae7e56e5d4171 (patch)
treecb75860c3fcba983c3869ee5d79ad123f382855f /build.xml
parent80cafc89485b998c4b429c6e1ffcde2c7067ac1b (diff)
downloadpoi-fb1fd90d8ae71600b06d4b5c7e7ae7e56e5d4171.tar.gz
poi-fb1fd90d8ae71600b06d4b5c7e7ae7e56e5d4171.zip
disable findbugs for IBM JDK
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1848809 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml5
1 files changed, 4 insertions, 1 deletions
diff --git a/build.xml b/build.xml
index be6f46b445..14eb9d9bb8 100644
--- a/build.xml
+++ b/build.xml
@@ -2227,7 +2227,10 @@ under the License.
</forbiddenapis>
</target>
- <target name="findbugs" depends="jar">
+ <!-- disabling findbugs until jenkins is updated to a current IBM JDK
+ see https://stackoverflow.com/a/48561534/2066598
+ this should be replaced by spotbugs when available in the jenkins warnings plugin -->
+ <target name="findbugs" depends="jar" unless:true="${isIBMVM}">
<downloadfile src="${findbugs.url}" dest="${findbugs.jar}"/>
<property name="findbugs.home" value="build/findbugs" />