aboutsummaryrefslogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
authorYegor Kozlov <yegor@apache.org>2011-11-07 09:12:16 +0000
committerYegor Kozlov <yegor@apache.org>2011-11-07 09:12:16 +0000
commitde14b40a970a2626701f59f1ccfa3b6970614519 (patch)
treec69669a55694ec94fa04fb396000a58287cd6af2 /build.xml
parentd6093ba1e32730932b950a93f7ebd9aeba20a370 (diff)
downloadpoi-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.xml4
1 files changed, 4 insertions, 0 deletions
diff --git a/build.xml b/build.xml
index 62c208bf1d..84c2bccbfd 100644
--- a/build.xml
+++ b/build.xml
@@ -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">