diff options
author | Maxim Valyanskiy <maxcom@apache.org> | 2011-05-10 10:38:17 +0000 |
---|---|---|
committer | Maxim Valyanskiy <maxcom@apache.org> | 2011-05-10 10:38:17 +0000 |
commit | 138bd6f94c47adb06d109b5b1a342a0b37547c0c (patch) | |
tree | 9bb911d648f98facb242f1839bd054c056ef0a6c /build.xml | |
parent | e94feeee12d4356cf5e46b44894032b64f6d0110 (diff) | |
download | poi-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.xml | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -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> |