mirror of
https://github.com/apache/poi.git
synced 2026-02-27 20:40:08 +08:00
minor improvements in build.xml, also fixed indents
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@712389 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
fb53e42579
commit
726a77f418
28
build.xml
28
build.xml
@ -197,7 +197,7 @@ under the License.
|
|||||||
|
|
||||||
<path id="ooxml.classpath">
|
<path id="ooxml.classpath">
|
||||||
<path refid="main.classpath"/>
|
<path refid="main.classpath"/>
|
||||||
<path refid="scratchpad.classpath"/>
|
<pathelement location="${main.output.dir}"/>
|
||||||
<pathelement location="${scratchpad.output.dir}"/>
|
<pathelement location="${scratchpad.output.dir}"/>
|
||||||
<fileset dir="${ooxml.lib}">
|
<fileset dir="${ooxml.lib}">
|
||||||
<include name="*.jar" />
|
<include name="*.jar" />
|
||||||
@ -1121,7 +1121,7 @@ FORREST_HOME environment variable!</echo>
|
|||||||
description="Generates POI's website's contents"/>
|
description="Generates POI's website's contents"/>
|
||||||
|
|
||||||
|
|
||||||
<target name="maven-dist" depends="jar,jar-ooxml" description="Builds the POM files for a maven distribution, and copies these and the jars to the appropriate locations">
|
<target name="maven-dist" depends="jar" description="Builds the POM files for a maven distribution, and copies these and the jars to the appropriate locations">
|
||||||
<!-- Copy the jar files into the maven jar directory -->
|
<!-- Copy the jar files into the maven jar directory -->
|
||||||
<!-- Same jars as for the main release, only lacking the datestamp -->
|
<!-- Same jars as for the main release, only lacking the datestamp -->
|
||||||
<copy
|
<copy
|
||||||
@ -1263,10 +1263,10 @@ FORREST_HOME environment variable!</echo>
|
|||||||
</copy>
|
</copy>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<target name="jar" depends="compile, compile-version, jar-ooxml" description="Creates jar files for distribution">
|
<target name="jar" depends="compile, compile-version" description="Creates jar files for distribution">
|
||||||
<jar destfile="${dist.dir}/${jar.name}-${version.id}-${DSTAMP}.jar">
|
<jar destfile="${dist.dir}/${jar.name}-${version.id}-${DSTAMP}.jar">
|
||||||
<fileset dir="${main.output.dir}" />
|
<fileset dir="${main.output.dir}" />
|
||||||
<fileset dir="legal/" />
|
<fileset dir="legal/" />
|
||||||
<manifest>
|
<manifest>
|
||||||
<attribute name="Built-By" value="${user.name}"/>
|
<attribute name="Built-By" value="${user.name}"/>
|
||||||
<attribute name="Specification-Title" value="Apache POI"/>
|
<attribute name="Specification-Title" value="Apache POI"/>
|
||||||
@ -1278,8 +1278,8 @@ FORREST_HOME environment variable!</echo>
|
|||||||
</manifest>
|
</manifest>
|
||||||
</jar>
|
</jar>
|
||||||
<jar destfile="${dist.dir}/${jar.name}-contrib-${version.id}-${DSTAMP}.jar">
|
<jar destfile="${dist.dir}/${jar.name}-contrib-${version.id}-${DSTAMP}.jar">
|
||||||
<fileset dir="${contrib.output.dir}" />
|
<fileset dir="${contrib.output.dir}" />
|
||||||
<fileset dir="legal/" />
|
<fileset dir="legal/" />
|
||||||
<manifest>
|
<manifest>
|
||||||
<attribute name="Built-By" value="${user.name}"/>
|
<attribute name="Built-By" value="${user.name}"/>
|
||||||
<attribute name="Specification-Title" value="Apache POI"/>
|
<attribute name="Specification-Title" value="Apache POI"/>
|
||||||
@ -1291,8 +1291,8 @@ FORREST_HOME environment variable!</echo>
|
|||||||
</manifest>
|
</manifest>
|
||||||
</jar>
|
</jar>
|
||||||
<jar destfile="${dist.dir}/${jar.name}-scratchpad-${version.id}-${DSTAMP}.jar">
|
<jar destfile="${dist.dir}/${jar.name}-scratchpad-${version.id}-${DSTAMP}.jar">
|
||||||
<fileset dir="${scratchpad.output.dir}" />
|
<fileset dir="${scratchpad.output.dir}" />
|
||||||
<fileset dir="legal/" />
|
<fileset dir="legal/" />
|
||||||
<manifest>
|
<manifest>
|
||||||
<attribute name="Built-By" value="${user.name}"/>
|
<attribute name="Built-By" value="${user.name}"/>
|
||||||
<attribute name="Specification-Title" value="Apache POI"/>
|
<attribute name="Specification-Title" value="Apache POI"/>
|
||||||
@ -1303,11 +1303,9 @@ FORREST_HOME environment variable!</echo>
|
|||||||
<attribute name="Implementation-Vendor" value="Apache"/>
|
<attribute name="Implementation-Vendor" value="Apache"/>
|
||||||
</manifest>
|
</manifest>
|
||||||
</jar>
|
</jar>
|
||||||
</target>
|
|
||||||
<target name="jar-ooxml" depends="compile-ooxml" description="Creates the ooxml jar files for distribution">
|
|
||||||
<jar destfile="${dist.dir}/${jar.name}-ooxml-${version.id}-${DSTAMP}.jar">
|
<jar destfile="${dist.dir}/${jar.name}-ooxml-${version.id}-${DSTAMP}.jar">
|
||||||
<fileset dir="${ooxml.output.dir}" />
|
<fileset dir="${ooxml.output.dir}" />
|
||||||
<fileset dir="legal/" />
|
<fileset dir="legal/" />
|
||||||
<manifest>
|
<manifest>
|
||||||
<attribute name="Built-By" value="${user.name}"/>
|
<attribute name="Built-By" value="${user.name}"/>
|
||||||
<attribute name="Specification-Title" value="Apache POI"/>
|
<attribute name="Specification-Title" value="Apache POI"/>
|
||||||
@ -1320,10 +1318,10 @@ FORREST_HOME environment variable!</echo>
|
|||||||
</jar>
|
</jar>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<target name="dist" depends="clean, fail-unless-tools-are-available, compile, site, jar, jar-ooxml"
|
<target name="dist" depends="clean, fail-unless-tools-are-available, compile, site, jar"
|
||||||
description="Creates the entire distribution into build/dist, from scratch">
|
description="Creates the entire distribution into build/dist, from scratch">
|
||||||
|
|
||||||
<property name="zipdir" value="${jar.name}-${version.id}" />
|
<property name="zipdir" value="${jar.name}-${version.id}" />
|
||||||
|
|
||||||
<zip destfile="${dist.dir}/${jar.name}-bin-${version.id}-${DSTAMP}.zip">
|
<zip destfile="${dist.dir}/${jar.name}-bin-${version.id}-${DSTAMP}.zip">
|
||||||
<zipfileset dir="legal/" prefix="${zipdir}" />
|
<zipfileset dir="legal/" prefix="${zipdir}" />
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user