diff options
author | Yegor Kozlov <yegor@apache.org> | 2011-11-07 09:12:16 +0000 |
---|---|---|
committer | Yegor Kozlov <yegor@apache.org> | 2011-11-07 09:12:16 +0000 |
commit | de14b40a970a2626701f59f1ccfa3b6970614519 (patch) | |
tree | c69669a55694ec94fa04fb396000a58287cd6af2 /build.xml | |
parent | d6093ba1e32730932b950a93f7ebd9aeba20a370 (diff) | |
download | poi-de14b40a970a2626701f59f1ccfa3b6970614519.tar.gz poi-de14b40a970a2626701f59f1ccfa3b6970614519.zip |
more progress with xlsf: support for gradient and texture fills, backgrounds, improved drawing of preset shapes and many more updates ...
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1198658 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -108,6 +108,7 @@ under the License. <!-- OOXML support: --> <property name="ooxml.src" location="src/ooxml/java"/> + <property name="ooxml.resource1.dir" value="src/resources/ooxml"/> <property name="ooxml.src.test" location="src/ooxml/testcases"/> <property name="ooxml.reports.test" location="build/ooxml-test-results"/> <property name="ooxml.output.dir" location="build/ooxml-classes"/> @@ -553,6 +554,9 @@ under the License. <pathelement path="${main.output.test.dir}"/> </classpath> </javac> + <copy todir="${ooxml.output.dir}"> + <fileset dir="${ooxml.resource1.dir}"/> + </copy> </target> <target name="compile-excelant" depends="compile-main,compile-ooxml"> |