diff options
author | Andreas Beeker <kiwiwings@apache.org> | 2018-12-12 23:25:07 +0000 |
---|---|---|
committer | Andreas Beeker <kiwiwings@apache.org> | 2018-12-12 23:25:07 +0000 |
commit | fb1fd90d8ae71600b06d4b5c7e7ae7e56e5d4171 (patch) | |
tree | cb75860c3fcba983c3869ee5d79ad123f382855f /build.xml | |
parent | 80cafc89485b998c4b429c6e1ffcde2c7067ac1b (diff) | |
download | poi-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.xml | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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" /> |