mirror of https://github.com/apache/poi.git
Revert back to findbugs-2.0.3 as 3.x requires Java 7, I didn't see the note that is already in the build.xml :(
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1745376 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
f0fe4008f8
commit
c236f4b236
14
build.xml
14
build.xml
|
@ -2064,16 +2064,20 @@ under the License.
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<target name="findbugs">
|
<target name="findbugs">
|
||||||
<!-- NOTE: we did not update to 3.x yet because it requires Java 7, but we are still supporting Java 6 currently! -->
|
|
||||||
<downloadfile
|
<downloadfile
|
||||||
src="http://prdownloads.sourceforge.net/findbugs/findbugs-noUpdateChecks-3.0.1.zip?download"
|
src="http://prdownloads.sourceforge.net/findbugs/findbugs-noUpdateChecks-2.0.3.zip?download"
|
||||||
dest="${main.lib}/findbugs-noUpdateChecks-3.0.1.zip"/>
|
dest="${main.lib}/findbugs-noUpdateChecks-2.0.3.zip"/>
|
||||||
|
|
||||||
|
<!-- ===========================================================================================================
|
||||||
|
NOTE: we did not update to 3.x yet because it requires Java 7, but we are still supporting Java 6 currently
|
||||||
|
===========================================================================================================
|
||||||
|
-->
|
||||||
|
|
||||||
<property name="findbugs.home" value="build/findbugs" />
|
<property name="findbugs.home" value="build/findbugs" />
|
||||||
<unzip src="${main.lib}/findbugs-noUpdateChecks-3.0.1.zip"
|
<unzip src="${main.lib}/findbugs-noUpdateChecks-2.0.3.zip"
|
||||||
dest="${findbugs.home}/lib">
|
dest="${findbugs.home}/lib">
|
||||||
<patternset>
|
<patternset>
|
||||||
<include name="findbugs-3.0.1/lib/**"/>
|
<include name="findbugs-2.0.3/lib/**"/>
|
||||||
</patternset>
|
</patternset>
|
||||||
<mapper type="flatten"/>
|
<mapper type="flatten"/>
|
||||||
</unzip>
|
</unzip>
|
||||||
|
|
Loading…
Reference in New Issue