Browse Source

upgrade build/test dependencies

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1894350 13f79535-47bb-0310-9956-ffa450edef68
tags/REL_5_2_0
PJ Fanning 2 years ago
parent
commit
5d23faf3cc
3 changed files with 6 additions and 6 deletions
  1. 3
    3
      build.xml
  2. 2
    2
      poi-ooxml-lite-agent/build.gradle
  3. 1
    1
      poi-ooxml/build.gradle

+ 3
- 3
build.xml View File

@@ -283,10 +283,10 @@ under the License.
<dependency prefix="main.jmh" artifact="org.openjdk.jmh:jmh-core:1.33" usage="main-tests"/>
<dependency prefix="main.jmhAnnotation" artifact="org.openjdk.jmh:jmh-generator-annprocess:1.33" usage="main-tests"/>
<dependency prefix="main.hamcrest" artifact="org.hamcrest:hamcrest:2.2" usage="main-tests"/>
<dependency prefix="main.xmlunit" artifact="org.xmlunit:xmlunit-core:2.8.2" usage="main-tests"/>
<dependency prefix="main.xmlunit" artifact="org.xmlunit:xmlunit-core:2.8.3" usage="main-tests"/>
<dependency prefix="main.mockito" artifact="org.mockito:mockito-core:4.0.0" usage="main-tests"/>
<dependency prefix="main.byte-buddy" artifact="net.bytebuddy:byte-buddy:1.11.20" usage="main-tests"/>
<dependency prefix="main.byte-buddy-agent" artifact="net.bytebuddy:byte-buddy-agent:1.11.20" usage="main-tests"/>
<dependency prefix="main.byte-buddy" artifact="net.bytebuddy:byte-buddy:1.11.21" usage="main-tests"/>
<dependency prefix="main.byte-buddy-agent" artifact="net.bytebuddy:byte-buddy-agent:1.11.21" 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.14.1" usage="main-tests"/>
<dependency prefix="main.commons-logging" artifact="commons-logging:commons-logging:1.2" usage="main-tests"/>

+ 2
- 2
poi-ooxml-lite-agent/build.gradle View File

@@ -31,8 +31,8 @@ repositories {
}

dependencies {
api 'net.bytebuddy:byte-buddy:1.11.20'
api 'net.bytebuddy:byte-buddy-agent:1.11.20'
api 'net.bytebuddy:byte-buddy:1.11.21'
api 'net.bytebuddy:byte-buddy-agent:1.11.21'
api "org.apache.xmlbeans:xmlbeans:${xmlbeansVersion}"
}


+ 1
- 1
poi-ooxml/build.gradle View File

@@ -139,7 +139,7 @@ dependencies {
testImplementation project(path:':poi', configuration:'tests')
testImplementation project(path:':poi-ooxml-lite-agent', configuration: 'archives')
testImplementation 'org.apiguardian:apiguardian-api:1.1.2'
testImplementation 'org.xmlunit:xmlunit-core:2.8.2'
testImplementation 'org.xmlunit:xmlunit-core:2.8.3'
testImplementation 'org.reflections:reflections:0.10.1'
testImplementation 'org.openjdk.jmh:jmh-core:1.33'
testImplementation 'org.openjdk.jmh:jmh-generator-annprocess:1.33'

Loading…
Cancel
Save