diff options
author | Dominik Stadler <centic@apache.org> | 2021-04-15 14:25:38 +0000 |
---|---|---|
committer | Dominik Stadler <centic@apache.org> | 2021-04-15 14:25:38 +0000 |
commit | 930e57665998099e8a4af61a96b4338144088e6d (patch) | |
tree | 63b9a2dd13f699e610413dc2d907723b74ea7c84 /poi-integration | |
parent | bb5d321b79193b98051f435621f5044842716c4e (diff) | |
download | poi-930e57665998099e8a4af61a96b4338144088e6d.tar.gz poi-930e57665998099e8a4af61a96b4338144088e6d.zip |
Gradle: Synchronize the code in the different build-scripts across the projects
No actual change in behavior expected
Mostly moved parts to make it easier to compare the build files with each other
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1888791 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'poi-integration')
-rw-r--r-- | poi-integration/build.gradle | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/poi-integration/build.gradle b/poi-integration/build.gradle index b4e72eba78..0cf8087976 100644 --- a/poi-integration/build.gradle +++ b/poi-integration/build.gradle @@ -21,6 +21,10 @@ final String TEST9_SRC = 'src/test/java9' final String TEST9_OUT = "${buildDir}/classes/java9/test/" final String VERSIONS9 = 'META-INF/versions/9' +configurations { + tests +} + sourceSets { test { if (JavaVersion.current() != JavaVersion.VERSION_1_8) { @@ -29,11 +33,6 @@ sourceSets { } } -configurations { - tests -} - - dependencies { testImplementation 'org.apache.ant:ant:1.10.9' testImplementation 'org.apache.commons:commons-collections4:4.4' @@ -86,7 +85,6 @@ task cacheTest9(type: Copy) { into(TEST9_SRC) } - jar { destinationDirectory = file("../build/dist/maven/${project.archivesBaseName}") |