Browse Source

slf4j 2.0.3

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1904324 13f79535-47bb-0310-9956-ffa450edef68
tags/REL_5_2_4
PJ Fanning 1 year ago
parent
commit
98705b80d4
5 changed files with 5 additions and 5 deletions
  1. 1
    1
      build.gradle
  2. 1
    1
      build.xml
  3. 1
    1
      poi-excelant/build.gradle
  4. 1
    1
      poi-integration/build.gradle
  5. 1
    1
      poi-ooxml/build.gradle

+ 1
- 1
build.gradle View File

all { all {
resolutionStrategy { resolutionStrategy {
force "commons-io:commons-io:${commonsIoVersion}" force "commons-io:commons-io:${commonsIoVersion}"
force 'org.slf4j:slf4j-api:2.0.2'
force 'org.slf4j:slf4j-api:2.0.3'
force 'com.fasterxml.woodstox:woodstox-core:6.3.1' force 'com.fasterxml.woodstox:woodstox-core:6.3.1'
} }
} }

+ 1
- 1
build.xml View File

<dependency prefix="ooxml.test.reflections" artifact="org.reflections:reflections:0.10.2" usage="ooxml-tests"/> <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:31.1-jre" usage="ooxml-tests"/>
<dependency prefix="ooxml.test.javassist" artifact="org.javassist:javassist:3.27.0-GA" 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.2" usage="ooxml-tests"/>
<dependency prefix="ooxml.test.slf4j-api" artifact="org.slf4j:slf4j-api:2.0.3" usage="ooxml-tests"/>
<dependency prefix="ooxml.test.opczip" artifact="com.github.rzymek:opczip:1.2.0" usage="ooxml-tests"/> <dependency prefix="ooxml.test.opczip" artifact="com.github.rzymek:opczip:1.2.0" usage="ooxml-tests"/>


<!-- coverage libs --> <!-- coverage libs -->

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

} }
testImplementation 'com.google.guava:guava:31.1-jre' testImplementation 'com.google.guava:guava:31.1-jre'
testImplementation "org.apache.logging.log4j:log4j-slf4j2-impl:${log4jVersion}" testImplementation "org.apache.logging.log4j:log4j-slf4j2-impl:${log4jVersion}"
testImplementation 'org.slf4j:slf4j-simple:2.0.2'
testImplementation 'org.slf4j:slf4j-simple:2.0.3'
testRuntimeOnly "org.apiguardian:apiguardian-api:${apiGuardianVersion}" testRuntimeOnly "org.apiguardian:apiguardian-api:${apiGuardianVersion}"


if (SAXON_TEST) { if (SAXON_TEST) {

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

} }
testImplementation project(path: ':poi-ooxml-lite-agent', configuration: 'archives') testImplementation project(path: ':poi-ooxml-lite-agent', configuration: 'archives')
testImplementation "org.apache.logging.log4j:log4j-slf4j2-impl:${log4jVersion}" testImplementation "org.apache.logging.log4j:log4j-slf4j2-impl:${log4jVersion}"
testImplementation 'org.slf4j:slf4j-simple:2.0.2'
testImplementation 'org.slf4j:slf4j-simple:2.0.3'
testRuntimeOnly "org.apiguardian:apiguardian-api:${apiGuardianVersion}" testRuntimeOnly "org.apiguardian:apiguardian-api:${apiGuardianVersion}"


if (SAXON_TEST) { if (SAXON_TEST) {

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

// prevent slf4j warnings coming from xmlsec -> slf4j-api 1.7.x dependency // prevent slf4j warnings coming from xmlsec -> slf4j-api 1.7.x dependency
// see https://logging.apache.org/log4j/2.x/log4j-slf4j-impl/ // see https://logging.apache.org/log4j/2.x/log4j-slf4j-impl/
testImplementation "org.apache.logging.log4j:log4j-slf4j2-impl:${log4jVersion}" testImplementation "org.apache.logging.log4j:log4j-slf4j2-impl:${log4jVersion}"
testImplementation 'org.slf4j:slf4j-simple:2.0.2'
testImplementation 'org.slf4j:slf4j-simple:2.0.3'


if (SAXON_TEST) { if (SAXON_TEST) {
testRuntimeOnly "net.sf.saxon:Saxon-HE:${saxonVersion}" testRuntimeOnly "net.sf.saxon:Saxon-HE:${saxonVersion}"

Loading…
Cancel
Save