diff options
author | Dominik Stadler <centic@apache.org> | 2020-09-25 19:39:49 +0000 |
---|---|---|
committer | Dominik Stadler <centic@apache.org> | 2020-09-25 19:39:49 +0000 |
commit | 7b83320f9e26157dfd8cdef2b628dce7ba42aa55 (patch) | |
tree | 2905a930c7040d9e6b6a2d43669a7b22b64df1c1 /build.gradle | |
parent | ceae0d0903e95dbf0c9e70a7e154513232e529c9 (diff) | |
download | poi-7b83320f9e26157dfd8cdef2b628dce7ba42aa55.tar.gz poi-7b83320f9e26157dfd8cdef2b628dce7ba42aa55.zip |
Update third party libraries in pom.xml and build.gradle, update JaCoCo to 0.8.6
Maven build should work onw, but Gradle is still broken by the poi-ant-contrib library
Also remove outdated third party libraries
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1882026 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/build.gradle b/build.gradle index 2c973dc748..83277719fb 100644 --- a/build.gradle +++ b/build.gradle @@ -45,8 +45,8 @@ configurations { dependencies { antLibs("junit:junit:4.13") - antLibs("org.apache.ant:ant-junit:1.10.4") - antLibs("org.apache.ant:ant-junit4:1.10.4") + antLibs("org.apache.ant:ant-junit:1.10.8") + antLibs("org.apache.ant:ant-junit4:1.10.8") } ant.taskdef(name: "junit", @@ -152,7 +152,7 @@ subprojects { } jacoco { - toolVersion = '0.8.5' + toolVersion = '0.8.6' } // ensure the build-dir exists @@ -301,7 +301,7 @@ project('excelant') { sourceSets.test.java.srcDirs = ['../../src/excelant/testcases'] dependencies { - compile 'org.apache.ant:ant:1.10.4' + compile 'org.apache.ant:ant:1.10.8' compile project(':main') compile project(':ooxml') @@ -323,7 +323,7 @@ project('integrationtest') { sourceSets.test.java.srcDirs = ['../../src/integrationtest'] dependencies { - compile 'org.apache.ant:ant:1.10.4' + compile 'org.apache.ant:ant:1.10.8' compile project(':main') compile project(':ooxml') |