diff options
author | PJ Fanning <fanningpj@apache.org> | 2019-03-21 10:00:33 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2019-03-21 10:00:33 +0000 |
commit | 3aea8e7f85bc2d6617f4327f2ad59b8f351ff655 (patch) | |
tree | 13a08241c5430a9b2535b15505004c2f1e2c7988 | |
parent | 4dc28798bf9c61a0481b8cfe24fc73024d777956 (diff) | |
download | poi-3aea8e7f85bc2d6617f4327f2ad59b8f351ff655.tar.gz poi-3aea8e7f85bc2d6617f4327f2ad59b8f351ff655.zip |
commons-codec - 1.12
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1855975 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | .classpath | 2 | ||||
-rw-r--r-- | build.gradle | 2 | ||||
-rw-r--r-- | build.xml | 5 | ||||
-rw-r--r-- | maven/poi.pom | 2 | ||||
-rw-r--r-- | sonar/main/pom.xml | 2 |
5 files changed, 7 insertions, 6 deletions
diff --git a/.classpath b/.classpath index 7dfedc818c..b953470841 100644 --- a/.classpath +++ b/.classpath @@ -34,7 +34,7 @@ <classpathentry kind="lib" path="ooxml-testlib/guava.jar"/> <classpathentry kind="lib" path="ooxml-testlib/javassist.jar"/> <classpathentry exported="true" kind="lib" path="compile-lib/xmlsec-2.1.0.jar"/> - <classpathentry exported="true" kind="lib" path="lib/commons-codec-1.11.jar"/> + <classpathentry exported="true" kind="lib" path="lib/commons-codec-1.12.jar"/> <classpathentry exported="true" kind="lib" path="lib/commons-logging-1.2.jar"/> <classpathentry exported="true" kind="lib" path="lib/commons-collections4-4.3.jar"/> <classpathentry kind="lib" path="lib/commons-math3-3.6.1.jar"/> diff --git a/build.gradle b/build.gradle index 66d800bbe2..04341a114f 100644 --- a/build.gradle +++ b/build.gradle @@ -178,7 +178,7 @@ project('main') { sourceSets.test.java.srcDirs = ['../../src/testcases'] dependencies { - compile 'commons-codec:commons-codec:1.11' + compile 'commons-codec:commons-codec:1.12' compile 'commons-logging:commons-logging:1.2' compile 'org.apache.commons:commons-collections4:4.3' compile 'org.apache.commons:commons-math3:3.6.1' @@ -172,9 +172,9 @@ under the License. <property name="main.commons-logging.jar" location="${main.lib}/commons-logging-1.2.jar"/> <property name="main.commons-logging.url" value="${repository.m2}/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.jar"/> - <property name="main.commons-codec.jar" location="${main.lib}/commons-codec-1.11.jar"/> + <property name="main.commons-codec.jar" location="${main.lib}/commons-codec-1.12.jar"/> <property name="main.commons-codec.url" - value="${repository.m2}/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.jar"/> + value="${repository.m2}/maven2/commons-codec/commons-codec/1.12/commons-codec-1.12.jar"/> <property name="main.log4j.jar" location="${main.lib}/log4j-1.2.17.jar"/> <property name="main.log4j.url" value="${repository.m2}/maven2/log4j/log4j/1.2.17/log4j-1.2.17.jar"/> <property name="main.junit.jar" location="${main.lib}/junit-4.12.jar"/> @@ -645,6 +645,7 @@ under the License. <include name="commons-codec-1.5*"/> <include name="commons-codec-1.9*"/> <include name="commons-codec-1.10*"/> + <include name="commons-codec-1.11*"/> <include name="commons-compress-1.16*"/> <include name="commons-compress-1.17*"/> <include name="commons-collections4-4.1*"/> diff --git a/maven/poi.pom b/maven/poi.pom index b276b2aecc..04dfa8cb9f 100644 --- a/maven/poi.pom +++ b/maven/poi.pom @@ -76,7 +76,7 @@ <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> - <version>1.11</version> + <version>1.12</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> diff --git a/sonar/main/pom.xml b/sonar/main/pom.xml index 6391d55ef7..a0e689f39b 100644 --- a/sonar/main/pom.xml +++ b/sonar/main/pom.xml @@ -123,7 +123,7 @@ <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> - <version>1.11</version> + <version>1.12</version> </dependency> <dependency> <groupId>commons-logging</groupId> |