aboutsummaryrefslogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
authorMaxim Valyanskiy <maxcom@apache.org>2011-05-10 10:38:17 +0000
committerMaxim Valyanskiy <maxcom@apache.org>2011-05-10 10:38:17 +0000
commit138bd6f94c47adb06d109b5b1a342a0b37547c0c (patch)
tree9bb911d648f98facb242f1839bd054c056ef0a6c /build.xml
parente94feeee12d4356cf5e46b44894032b64f6d0110 (diff)
downloadpoi-138bd6f94c47adb06d109b5b1a342a0b37547c0c.tar.gz
poi-138bd6f94c47adb06d109b5b1a342a0b37547c0c.zip
bug#51165: Add support for OOXML Agile Encryption
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1101397 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml9
1 files changed, 9 insertions, 0 deletions
diff --git a/build.xml b/build.xml
index 9112de255f..5f4c5aada4 100644
--- a/build.xml
+++ b/build.xml
@@ -122,6 +122,9 @@ under the License.
<property name="main.commons-logging.jar" location="${main.lib}/commons-logging-1.1.jar"/>
<property name="main.commons-logging.url"
value="${repository.m2}/maven2/commons-logging/commons-logging/1.1/commons-logging-1.1.jar"/>
+ <property name="main.commons-codec.jar" location="${main.lib}/commons-codec-1.5.jar"/>
+ <property name="main.commons-codec.url"
+ value="${repository.m2}/maven2/commons-codec/commons-codec/1.5/commons-codec-1.5.jar"/>
<property name="main.log4j.jar" location="${main.lib}/log4j-1.2.13.jar"/>
<property name="main.log4j.url" value="${repository.m2}/maven2/log4j/log4j/1.2.13/log4j-1.2.13.jar"/>
<property name="main.junit.jar" location="${main.lib}/junit-3.8.1.jar"/>
@@ -166,6 +169,7 @@ under the License.
<path id="main.classpath">
<pathelement location="${main.commons-logging.jar}"/>
+ <pathelement location="${main.commons-codec.jar}"/>
<pathelement location="${main.log4j.jar}"/>
<pathelement location="${main.junit.jar}"/>
</path>
@@ -295,6 +299,7 @@ under the License.
<or>
<and>
<available file="${main.commons-logging.jar}"/>
+ <available file="${main.commons-codec.jar}"/>
<available file="${main.log4j.jar}"/>
<available file="${main.junit.jar}"/>
<available file="${main.ant.jar}"/>
@@ -312,6 +317,10 @@ under the License.
<param name="destfile" value="${main.commons-logging.jar}"/>
</antcall>
<antcall target="downloadfile">
+ <param name="sourcefile" value="${main.commons-codec.url}"/>
+ <param name="destfile" value="${main.commons-codec.jar}"/>
+ </antcall>
+ <antcall target="downloadfile">
<param name="sourcefile" value="${main.log4j.url}"/>
<param name="destfile" value="${main.log4j.jar}"/>
</antcall>