diff options
author | PJ Fanning <fanningpj@apache.org> | 2023-06-07 10:23:06 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2023-06-07 10:23:06 +0000 |
commit | 367b8b797aa0e1d0a1f17fbe9e09caca175e5592 (patch) | |
tree | 84daddb0156cb74b3b69e14f4a3ec04af9d37040 | |
parent | ebb6796f699be3c524a552403548ee0eb4fbc5a4 (diff) | |
download | poi-367b8b797aa0e1d0a1f17fbe9e09caca175e5592.tar.gz poi-367b8b797aa0e1d0a1f17fbe9e09caca175e5592.zip |
update guava
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1910275 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | build.xml | 2 | ||||
-rw-r--r-- | poi-excelant/build.gradle | 2 | ||||
-rw-r--r-- | poi-integration/build.gradle | 2 | ||||
-rw-r--r-- | poi-ooxml/build.gradle | 2 |
4 files changed, 4 insertions, 4 deletions
@@ -336,7 +336,7 @@ under the License. <!-- jars in the ooxml-test-lib directory, see the fetch-ooxml-jars target--> <dependency prefix="ooxml.test.reflections" artifact="org.reflections:reflections:0.10.2" usage="ooxml-tests"/> - <dependency prefix="ooxml.test.guava" artifact="com.google.guava:guava:31.1-jre" usage="ooxml-tests"/> + <dependency prefix="ooxml.test.guava" artifact="com.google.guava:guava:32.0.0-jre" usage="ooxml-tests"/> <dependency prefix="ooxml.test.javassist" artifact="org.javassist:javassist:3.27.0-GA" usage="ooxml-tests"/> <dependency prefix="ooxml.test.slf4j-api" artifact="org.slf4j:slf4j-api:2.0.7" usage="ooxml-tests"/> <dependency prefix="ooxml.test.opczip" artifact="com.github.rzymek:opczip:1.2.0" usage="ooxml-tests"/> diff --git a/poi-excelant/build.gradle b/poi-excelant/build.gradle index 92253c0ed2..71090b12ed 100644 --- a/poi-excelant/build.gradle +++ b/poi-excelant/build.gradle @@ -41,7 +41,7 @@ dependencies { testImplementation(project(path: ':poi-ooxml', configuration: 'tests')) { exclude group: 'org.apache.poi', module: 'poi-scratchpad' } - testImplementation 'com.google.guava:guava:31.1-jre' + testImplementation 'com.google.guava:guava:32.0.0-jre' testImplementation "org.apache.logging.log4j:log4j-slf4j2-impl:${log4jVersion}" testImplementation 'org.slf4j:slf4j-simple:2.0.7' testRuntimeOnly "org.apiguardian:apiguardian-api:${apiGuardianVersion}" diff --git a/poi-integration/build.gradle b/poi-integration/build.gradle index 95f8c1d1dc..2196ca21cc 100644 --- a/poi-integration/build.gradle +++ b/poi-integration/build.gradle @@ -41,7 +41,7 @@ sourceSets { dependencies { testImplementation 'org.apache.ant:ant:1.10.12' testImplementation 'org.apache.commons:commons-collections4:4.4' - testImplementation 'com.google.guava:guava:31.1-jre' + testImplementation 'com.google.guava:guava:32.0.0-jre' misc(project(':poi-ooxml')) { capabilities { diff --git a/poi-ooxml/build.gradle b/poi-ooxml/build.gradle index fd6111d9f7..ba5c390283 100644 --- a/poi-ooxml/build.gradle +++ b/poi-ooxml/build.gradle @@ -118,7 +118,7 @@ dependencies { testImplementation 'org.reflections:reflections:0.10.2' testImplementation 'org.openjdk.jmh:jmh-core:1.36' testImplementation 'org.openjdk.jmh:jmh-generator-annprocess:1.36' - testImplementation 'com.google.guava:guava:31.1-jre' + testImplementation 'com.google.guava:guava:32.0.0-jre' testImplementation 'org.tukaani:xz:1.9' testImplementation 'com.github.rzymek:opczip:1.2.0' |