aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPJ Fanning <fanningpj@apache.org>2023-02-23 19:41:20 +0000
committerPJ Fanning <fanningpj@apache.org>2023-02-23 19:41:20 +0000
commita6f87432439fd9da93c9149fd5a13bb247fe86b9 (patch)
tree48dd53f14415be0099820b5a0b306db4f5912577
parent6248cc213877fb918749151f925b0faa00ea0074 (diff)
downloadpoi-a6f87432439fd9da93c9149fd5a13bb247fe86b9.tar.gz
poi-a6f87432439fd9da93c9149fd5a13bb247fe86b9.zip
upgrade byte-buddy
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1907833 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--build.xml5
-rw-r--r--poi-ooxml-lite-agent/build.gradle4
2 files changed, 5 insertions, 4 deletions
diff --git a/build.xml b/build.xml
index 919189fc85..dd447fc6e2 100644
--- a/build.xml
+++ b/build.xml
@@ -285,8 +285,8 @@ under the License.
<dependency prefix="main.hamcrest" artifact="org.hamcrest:hamcrest:2.2" usage="main-tests"/>
<dependency prefix="main.xmlunit" artifact="org.xmlunit:xmlunit-core:2.9.1" usage="main-tests"/>
<dependency prefix="main.mockito" artifact="org.mockito:mockito-core:4.11.0" usage="main-tests"/>
- <dependency prefix="main.byte-buddy" artifact="net.bytebuddy:byte-buddy:1.12.23" usage="main-tests"/>
- <dependency prefix="main.byte-buddy-agent" artifact="net.bytebuddy:byte-buddy-agent:1.12.23" usage="main-tests"/>
+ <dependency prefix="main.byte-buddy" artifact="net.bytebuddy:byte-buddy:1.14.0" usage="main-tests"/>
+ <dependency prefix="main.byte-buddy-agent" artifact="net.bytebuddy:byte-buddy-agent:1.14.0" usage="main-tests"/>
<dependency prefix="main.objenesis" artifact="org.objenesis:objenesis:3.1" usage="main-tests"/>
<dependency prefix="main.log4j-core" artifact="org.apache.logging.log4j:log4j-core:2.20.0" usage="main-tests"/>
<dependency prefix="main.commons-logging" artifact="commons-logging:commons-logging:1.2" usage="main-tests"/>
@@ -681,6 +681,7 @@ under the License.
<include name="*slf4j*.jar"/>
</fileset>
<fileset dir="${basedir}/lib/main-tests">
+ <include name="byte-buddy-*1.12*.jar"/>
<include name="mockito-core-3*.jar"/>
<include name="mockito-core-4.0*.jar"/>
<include name="mockito-core-4.2*.jar"/>
diff --git a/poi-ooxml-lite-agent/build.gradle b/poi-ooxml-lite-agent/build.gradle
index 87111ab19d..f402e4af2b 100644
--- a/poi-ooxml-lite-agent/build.gradle
+++ b/poi-ooxml-lite-agent/build.gradle
@@ -22,8 +22,8 @@ sourceSets {
}
dependencies {
- api 'net.bytebuddy:byte-buddy:1.12.23'
- api 'net.bytebuddy:byte-buddy-agent:1.12.23'
+ api 'net.bytebuddy:byte-buddy:1.14.0'
+ api 'net.bytebuddy:byte-buddy-agent:1.14.0'
api "org.apache.xmlbeans:xmlbeans:${xmlbeansVersion}"
}