diff options
author | Dominik Stadler <centic@apache.org> | 2021-05-13 12:11:35 +0000 |
---|---|---|
committer | Dominik Stadler <centic@apache.org> | 2021-05-13 12:11:35 +0000 |
commit | 41ff8bb20c9b1b127968becda2c67fad812e7015 (patch) | |
tree | 7836c222e00a8901f1b87f9775362cbd65f27014 /build.gradle | |
parent | 0e8f4e3634da889cc9ed3e0c69f7368a4ff3c94a (diff) | |
download | poi-41ff8bb20c9b1b127968becda2c67fad812e7015.tar.gz poi-41ff8bb20c9b1b127968becda2c67fad812e7015.zip |
Start moving some bits to the main Gradle file
Use a common definition of some constants
Gradle plugins are in the main file already anyway
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1889839 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle index 485313ff61..2ee40a3092 100644 --- a/build.gradle +++ b/build.gradle @@ -81,7 +81,7 @@ wrapper.finalizedBy adjustWrapperPropertiesFile */ allprojects { // apply plugin: 'eclipse' - apply plugin: 'idea' + apply plugin: 'idea' } /** @@ -107,6 +107,12 @@ subprojects { hamcrestVersion = '2.2' xmlbeansVersion = '5.0.0' batikVersion = '1.14' + + JAVA9_SRC = 'src/main/java9' + JAVA9_OUT = "${buildDir}/classes/java9/main/" + TEST9_SRC = 'src/test/java9' + TEST9_OUT = "${buildDir}/classes/java9/test/" + VERSIONS9 = 'META-INF/versions/9' } tasks.withType(JavaCompile) { |