diff options
author | Andreas Beeker <kiwiwings@apache.org> | 2014-09-17 21:12:36 +0000 |
---|---|---|
committer | Andreas Beeker <kiwiwings@apache.org> | 2014-09-17 21:12:36 +0000 |
commit | 56051c3e44486c2b54cc53cf2c91a1f94555f14f (patch) | |
tree | 6b9254561bd856791084d32a6432cfd00fdd1cc6 /build.xml | |
parent | d1bc3ab1fd1ac2f7a410fd4ecc372970e5150556 (diff) | |
download | poi-56051c3e44486c2b54cc53cf2c91a1f94555f14f.tar.gz poi-56051c3e44486c2b54cc53cf2c91a1f94555f14f.zip |
merge with trunk
git-svn-id: https://svn.apache.org/repos/asf/poi/branches/xml_signature@1625828 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 16 |
1 files changed, 15 insertions, 1 deletions
@@ -164,13 +164,17 @@ under the License. <property name="ooxml.xmlbeans26.jar" location="${ooxml.lib}/xmlbeans-2.6.0.jar"/> <property name="ooxml.xmlbeans26.url" value="${repository.m2}/maven2/org/apache/xmlbeans/xmlbeans/2.6.0/xmlbeans-2.6.0.jar"/> - + <!-- coverage libs --> <property name="jacoco.zip" location="${main.lib}/jacoco-0.7.1.201405082137.zip"/> <property name="jacoco.url" value="${repository.m2}/maven2/org/jacoco/jacoco/0.7.1.201405082137/jacoco-0.7.1.201405082137.zip"/> <property name="asm.jar" location="${main.lib}/asm-all-5.0.3.jar"/> <property name="asm.url" value="${repository.m2}/maven2/org/ow2/asm/asm-all/5.0.3/asm-all-5.0.3.jar"/> + <!-- for testing with older Xerces implementation --> + <property name="xerces.jar" location="${main.lib}/xercesImpl-2.6.1.jar"/> + <property name="xerces.url" value="${repository.m2}/maven2/xerces/xercesImpl/2.6.1//xercesImpl-2.6.1.jar"/> + <!-- license checks --> <property name="rat.jar" location="${main.lib}/apache-rat-0.10.jar"/> <property name="rat.url" value="${repository.m2}/maven2/org/apache/rat/apache-rat/0.10/apache-rat-0.10.jar"/> @@ -254,6 +258,7 @@ under the License. <path refid="main.classpath"/> <pathelement location="${main.output.dir}"/> <pathelement location="${main.output.test.dir}"/> + <pathelement location="${additionaljar}"/> </path> <path id="test.scratchpad.classpath"> @@ -261,6 +266,7 @@ under the License. <pathelement location="${main.output.test.dir}"/> <pathelement location="${scratchpad.output.dir}"/> <pathelement location="${scratchpad.output.test.dir}"/> + <pathelement location="${additionaljar}"/> </path> <path id="test.ooxml.classpath"> @@ -268,6 +274,7 @@ under the License. <pathelement location="${ooxml.output.dir}"/> <pathelement location="${ooxml.output.test.dir}"/> <pathelement location="${main.output.test.dir}"/> + <pathelement location="${additionaljar}"/> </path> <path id="ooxml-lite.classpath"> @@ -300,6 +307,7 @@ under the License. <pathelement location="${excelant.output.dir}"/> <pathelement location="${excelant.output.test.dir}"/> <pathelement location="${main.output.test.dir}"/> + <pathelement location="${additionaljar}"/> </path> <path id="lib.jacoco"> @@ -372,6 +380,7 @@ under the License. <include name="jacoco-0.6*"/> <include name="log4j-1.2.13*"/> <include name="org.jacoco.*-0.6.*"/> + <include name="dom4j*"/> </fileset> </delete> @@ -388,6 +397,7 @@ under the License. <available file="${asm.jar}"/> <available file="${jacoco.zip}"/> <available file="${rat.jar}"/> + <available file="${xerces.jar}"/> </and> <isset property="disconnected"/> </or> @@ -439,6 +449,10 @@ under the License. </patternset> </unzip> <antcall target="downloadfile"> + <param name="sourcefile" value="${xerces.url}"/> + <param name="destfile" value="${xerces.jar}"/> + </antcall> + <antcall target="downloadfile"> <param name="sourcefile" value="${rat.url}"/> <param name="destfile" value="${rat.jar}"/> </antcall> |