diff options
author | Nick Burch <nick@apache.org> | 2007-12-30 18:11:55 +0000 |
---|---|---|
committer | Nick Burch <nick@apache.org> | 2007-12-30 18:11:55 +0000 |
commit | 71085a913bca601805bd7d2d3aba747312321c83 (patch) | |
tree | 114c7054b6c44c31a62f7047c7abfd6e45e0ed58 /build.xml | |
parent | 44e5f549c484adb8e08ae27e739cf9af91b14e2e (diff) | |
download | poi-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.xml | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -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"> |