Clean up a bit and move some comments into descriptions for the benefit of ant -p
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1706822 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
2dc93d4411
commit
28ccb12153
16
build.xml
16
build.xml
@ -389,7 +389,7 @@ under the License.
|
|||||||
<format property="tstamp.year" pattern="yyyy"/>
|
<format property="tstamp.year" pattern="yyyy"/>
|
||||||
</tstamp>
|
</tstamp>
|
||||||
|
|
||||||
<target name="init" depends="fetch-jars,fetch-ooxml-jars">
|
<target name="init" depends="fetch-jars,fetch-ooxml-jars" description="Initialization run before other targets.">
|
||||||
<mkdir dir="build"/>
|
<mkdir dir="build"/>
|
||||||
<mkdir dir="${main.output.dir}"/>
|
<mkdir dir="${main.output.dir}"/>
|
||||||
<mkdir dir="${main.output.test.dir}"/>
|
<mkdir dir="${main.output.test.dir}"/>
|
||||||
@ -413,7 +413,7 @@ under the License.
|
|||||||
<echo message="Using Java: ${java.version}/${java.runtime.version}/${java.vm.version}/${java.vm.name} from ${java.vm.vendor} on ${os.name}: ${os.version}" />
|
<echo message="Using Java: ${java.version}/${java.runtime.version}/${java.vm.version}/${java.vm.name} from ${java.vm.vendor} on ${os.name}: ${os.version}" />
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<target name="clean">
|
<target name="clean" description="Remove generated artefacts">
|
||||||
<delete dir="build"/>
|
<delete dir="build"/>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
@ -1687,11 +1687,7 @@ under the License.
|
|||||||
</sequential>
|
</sequential>
|
||||||
</macrodef>
|
</macrodef>
|
||||||
|
|
||||||
<!--
|
<target name="mvn-install" depends="maven.ant.tasks-check,jar,maven-poms" description="Install POI artifacts into the local repository. Equivalent of 'mvn install'">
|
||||||
Install POI artifacts into the local repository.
|
|
||||||
Invoking this command is equivalent to 'mvn install' in Maven-driven projects.
|
|
||||||
-->
|
|
||||||
<target name="mvn-install" depends="maven.ant.tasks-check,jar,maven-poms">
|
|
||||||
<m2-install artifactId="poi"/>
|
<m2-install artifactId="poi"/>
|
||||||
<m2-install artifactId="poi-scratchpad"/>
|
<m2-install artifactId="poi-scratchpad"/>
|
||||||
<m2-install artifactId="poi-ooxml"/>
|
<m2-install artifactId="poi-ooxml"/>
|
||||||
@ -1700,9 +1696,7 @@ under the License.
|
|||||||
<m2-install artifactId="poi-excelant"/>
|
<m2-install artifactId="poi-excelant"/>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<!-- Runs the Apache Creadur Rat check against the source code, to -->
|
<target name="rat-check" depends="init" description="Runs the Apache Creadur Rat check against the source code, to spot any files which are missing the correct license headers">
|
||||||
<!-- spot any files which are missing the correct license headers -->
|
|
||||||
<target name="rat-check" depends="init">
|
|
||||||
<mkdir dir="${rat.reportdir}" />
|
<mkdir dir="${rat.reportdir}" />
|
||||||
|
|
||||||
<typedef resource="org/apache/rat/anttasks/antlib.xml"
|
<typedef resource="org/apache/rat/anttasks/antlib.xml"
|
||||||
@ -1758,7 +1752,7 @@ under the License.
|
|||||||
</forbiddenapis>
|
</forbiddenapis>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<target name="findbugs"><!-- depends="assemble" -->
|
<target name="findbugs">
|
||||||
<antcall target="downloadfile">
|
<antcall target="downloadfile">
|
||||||
<param name="sourcefile" value="http://prdownloads.sourceforge.net/findbugs/findbugs-noUpdateChecks-2.0.3.zip?download"/>
|
<param name="sourcefile" value="http://prdownloads.sourceforge.net/findbugs/findbugs-noUpdateChecks-2.0.3.zip?download"/>
|
||||||
<param name="destfile" value="${main.lib}/findbugs-noUpdateChecks-2.0.3.zip"/>
|
<param name="destfile" value="${main.lib}/findbugs-noUpdateChecks-2.0.3.zip"/>
|
||||||
|
Loading…
Reference in New Issue
Block a user