summaryrefslogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
authorAndreas Beeker <kiwiwings@apache.org>2014-09-29 23:39:45 +0000
committerAndreas Beeker <kiwiwings@apache.org>2014-09-29 23:39:45 +0000
commit36dc6dfc907eabbfbcf7582cffb52c75a5fc8a7b (patch)
tree2b7178baba21243984b42cb13fcbde4d422a5bbe /build.xml
parent9acd59dd9c771cd0081e0c68ff857a5bb55e67bf (diff)
downloadpoi-36dc6dfc907eabbfbcf7582cffb52c75a5fc8a7b.tar.gz
poi-36dc6dfc907eabbfbcf7582cffb52c75a5fc8a7b.zip
Fixed complete-build errors
git-svn-id: https://svn.apache.org/repos/asf/poi/branches/xml_signature@1628338 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml20
1 files changed, 18 insertions, 2 deletions
diff --git a/build.xml b/build.xml
index 8be3cb707d..7c46239ccf 100644
--- a/build.xml
+++ b/build.xml
@@ -152,8 +152,8 @@ under the License.
<property name="dsig.xmlsec.url" value="${repository.m2}/maven2/org/apache/santuario/xmlsec/2.0.1/xmlsec-2.0.1.jar"/>
<property name="dsig.bouncycastle-prov.jar" location="${compile.lib}/bcprov-ext-jdk15on-1.51.jar"/>
<property name="dsig.bouncycastle-prov.url" value="${repository.m2}/maven2/org/bouncycastle/bcprov-ext-jdk15on/1.51/bcprov-ext-jdk15on-1.51.jar"/>
- <property name="dsig.bouncycastle-pkix.jar" location="${compile.lib}/bcpkix-jdk15on-151.jar"/>
- <property name="dsig.bouncycastle-pkix.url" value="${repository.m2}/maven2/org/bouncycastle/bcpkix-jdk15on/1.51/bcpkix-jdk15on-151.jar"/>
+ <property name="dsig.bouncycastle-pkix.jar" location="${compile.lib}/bcpkix-jdk15on-1.51.jar"/>
+ <property name="dsig.bouncycastle-pkix.url" value="${repository.m2}/maven2/org/bouncycastle/bcpkix-jdk15on/1.51/bcpkix-jdk15on-1.51.jar"/>
<property name="dsig.sl4j-api.jar" location="${compile.lib}/slf4j-api-1.7.7.jar"/>
<property name="dsig.sl4j-api.url" value="${repository.m2}/maven2/org/slf4j/slf4j-api/1.7.7/slf4j-api-1.7.7.jar"/>
@@ -245,6 +245,13 @@ under the License.
<pathelement location="${main.output.dir}"/>
</path>
+ <path id="ooxml.xmlsec.classpath">
+ <pathelement location="${dsig.xmlsec.jar}"/>
+ <pathelement location="${dsig.bouncycastle-prov.jar}"/>
+ <pathelement location="${dsig.bouncycastle-pkix.jar}"/>
+ <pathelement location="${dsig.sl4j-api.jar}"/>
+ </path>
+
<path id="ooxml.classpath">
<pathelement location="${ooxml.xmlbeans26.jar}"/>
<pathelement location="${ooxml.xsds.jar}"/>
@@ -252,6 +259,7 @@ under the License.
<pathelement location="${main.output.dir}"/>
<pathelement location="${scratchpad.output.dir}"/>
<pathelement location="${ooxml.encryption.jar}"/>
+ <path refid="ooxml.xmlsec.classpath"/>
</path>
<path id="test.classpath">
@@ -398,6 +406,10 @@ under the License.
<available file="${jacoco.zip}"/>
<available file="${rat.jar}"/>
<available file="${xerces.jar}"/>
+ <available file="${dsig.bouncycastle-prov.jar}"/>
+ <available file="${dsig.bouncycastle-pkix.jar}"/>
+ <available file="${dsig.xmlsec.jar}"/>
+ <available file="${dsig.sl4j-api.jar}"/>
</and>
<isset property="disconnected"/>
</or>
@@ -468,6 +480,10 @@ under the License.
<param name="sourcefile" value="${dsig.xmlsec.url}"/>
<param name="destfile" value="${dsig.xmlsec.jar}"/>
</antcall>
+ <antcall target="downloadfile">
+ <param name="sourcefile" value="${dsig.sl4j-api.url}"/>
+ <param name="destfile" value="${dsig.sl4j-api.jar}"/>
+ </antcall>
</target>
<target name="check-ooxml-jars">