Browse Source

revert ant upgrade due to issues with ant-launcher-1.10.13.jar

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

+ 1
- 1
build.gradle View File

@@ -66,7 +66,7 @@ configurations {

dependencies {
antLibs("org.junit.jupiter:junit-jupiter:5.9.1")
antLibs("org.apache.ant:ant-junitlauncher:1.10.13")
antLibs("org.apache.ant:ant-junitlauncher:1.10.12")
}

ant.taskdef(name: "junit",

+ 2
- 2
build.xml View File

@@ -291,8 +291,8 @@ under the License.
<dependency prefix="main.log4j-core" artifact="org.apache.logging.log4j:log4j-core:2.19.0" usage="main-tests"/>
<dependency prefix="main.commons-logging" artifact="commons-logging:commons-logging:1.2" usage="main-tests"/>

<dependency prefix="main.ant" artifact="org.apache.ant:ant:1.10.13" usage="excelant"/>
<dependency prefix="main.antlauncher" artifact="org.apache.ant:ant-launcher:1.10.13" usage="excelant"/>
<dependency prefix="main.ant" artifact="org.apache.ant:ant:1.10.12" usage="excelant"/>
<dependency prefix="main.antlauncher" artifact="org.apache.ant:ant-launcher:1.10.12" usage="excelant"/>

<!-- xml signature libs - not part of the distribution -->
<dependency prefix="dsig.xmlsec" artifact="org.apache.santuario:xmlsec:3.0.1" usage="ooxml-provided"/>

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

@@ -31,7 +31,7 @@ sourceSets {
}

dependencies {
api 'org.apache.ant:ant:1.10.13'
api 'org.apache.ant:ant:1.10.12'

api project(':poi-ooxml')
compileOnly project(path: ':poi-ooxml', configuration: 'archives')

+ 1
- 1
poi/build.gradle View File

@@ -44,7 +44,7 @@ dependencies {
api "org.apache.logging.log4j:log4j-api:${log4jVersion}"

testImplementation 'org.reflections:reflections:0.10.2'
testImplementation 'org.apache.ant:ant:1.10.13'
testImplementation 'org.apache.ant:ant:1.10.12'

testImplementation "org.junit.jupiter:junit-jupiter-api:${junitVersion}"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:${junitVersion}"

Loading…
Cancel
Save