summaryrefslogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
authorNick Burch <nick@apache.org>2007-12-30 18:11:55 +0000
committerNick Burch <nick@apache.org>2007-12-30 18:11:55 +0000
commit71085a913bca601805bd7d2d3aba747312321c83 (patch)
tree114c7054b6c44c31a62f7047c7abfd6e45e0ed58 /build.xml
parent44e5f549c484adb8e08ae27e739cf9af91b14e2e (diff)
downloadpoi-71085a913bca601805bd7d2d3aba747312321c83.tar.gz
poi-71085a913bca601805bd7d2d3aba747312321c83.zip
OOXML pptx text extractor, and test. Also add jar-ooxml ant task
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@607572 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml15
1 files changed, 15 insertions, 0 deletions
diff --git a/build.xml b/build.xml
index a11bb94262..5989ddad3e 100644
--- a/build.xml
+++ b/build.xml
@@ -1124,6 +1124,21 @@ FORREST_HOME environment variable!</echo>
</manifest>
</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">
+ <fileset dir="${ooxml.output.dir}" />
+ <fileset dir="legal/" />
+ <manifest>
+ <attribute name="Built-By" value="${user.name}"/>
+ <attribute name="Specification-Title" value="Apache POI"/>
+ <attribute name="Specification-Version" value="${version.id}-${DSTAMP}"/>
+ <attribute name="Specification-Vendor" value="Apache"/>
+ <attribute name="Implementation-Title" value="Apache POI"/>
+ <attribute name="Implementation-Version" value="${version.id}-${DSTAMP}"/>
+ <attribute name="Implementation-Vendor" value="Apache"/>
+ </manifest>
+ </jar>
+ </target>
<target name="dist" depends="clean, fail-unless-tools-are-available, compile, site, jar"
description="Creates the entire distribution into build/dist, from scratch">