diff options
author | Dominik Stadler <centic@apache.org> | 2021-11-02 13:18:20 +0000 |
---|---|---|
committer | Dominik Stadler <centic@apache.org> | 2021-11-02 13:18:20 +0000 |
commit | cb306470148eafd8dd3092fc9c83f1033ccaec37 (patch) | |
tree | 9a3637d126ff627ab51fba4fe8b4d67a66a206a0 /build.xml | |
parent | bf22ea449e2a56bacba13dc3112a72409d9e76a9 (diff) | |
download | poi-cb306470148eafd8dd3092fc9c83f1033ccaec37.tar.gz poi-cb306470148eafd8dd3092fc9c83f1033ccaec37.zip |
Keep junit-versions in sync between Ant and Gradle
Also remove outdated versions of junit 5 jars
This breaks CI builds in strange ways otherwise
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1894678 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 11 |
1 files changed, 7 insertions, 4 deletions
@@ -275,9 +275,9 @@ under the License. <dependency prefix="main.junit-params" artifact="org.junit.jupiter:junit-jupiter-params:5.8.1" usage="main-tests"/> <dependency prefix="main.junit-opentest4j" artifact="org.opentest4j:opentest4j:1.2.0" usage="main-tests"/> <dependency prefix="main.junit-apiguardian" artifact="org.apiguardian:apiguardian-api:1.1.0" usage="main-tests"/> - <dependency prefix="main.junit-pcommons" artifact="org.junit.platform:junit-platform-commons:1.7.1" usage="main-tests"/> - <dependency prefix="main.junit-pengine" artifact="org.junit.platform:junit-platform-engine:1.7.1" usage="main-tests"/> - <dependency prefix="main.junit-plauncher" artifact="org.junit.platform:junit-platform-launcher:1.7.1" usage="main-tests"/> + <dependency prefix="main.junit-pcommons" artifact="org.junit.platform:junit-platform-commons:1.8.1" usage="main-tests"/> + <dependency prefix="main.junit-pengine" artifact="org.junit.platform:junit-platform-engine:1.8.1" usage="main-tests"/> + <dependency prefix="main.junit-plauncher" artifact="org.junit.platform:junit-platform-launcher:1.8.1" usage="main-tests"/> <dependency prefix="main.jmh" artifact="org.openjdk.jmh:jmh-core:1.33" usage="main-tests"/> @@ -678,7 +678,10 @@ under the License. <include name="hamcrest-core*"/> <include name="junit-4*.jar"/> <include name="*slf4j*.jar"/> - </fileset> + <include name="junit-jupiter-*-5.8.0.jar"/> + <include name="junit-jupiter-*-5.7.*.jar"/> + <include name="junit-platform-*-1.7.*.jar"/> + </fileset> <fileset dir="${basedir}/lib/ooxml"> <include name="xmlbeans-3*.jar"/> <include name="xmlbeans-4*.jar"/> |