Author: kiwiwings
Date: Wed Dec 12 23:25:07 2018
New Revision: 1848809
URL: http://svn.apache.org/viewvc?rev=1848809&view=rev
Log:
disable findbugs for IBM JDK
Modified:
poi/trunk/build.xml
Modified: poi/trunk/build.xml
URL: http://svn.apache.org/viewvc/poi/trunk/build.xml?rev=1848809&r1=1848808&r2=1848809&view=diff
==============================================================================
--- poi/trunk/build.xml (original)
+++ poi/trunk/build.xml Wed Dec 12 23:25:07 2018
@@ -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" />
---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org
|