diff options
author | Andreas Beeker <kiwiwings@apache.org> | 2021-04-18 22:11:26 +0000 |
---|---|---|
committer | Andreas Beeker <kiwiwings@apache.org> | 2021-04-18 22:11:26 +0000 |
commit | 27e0842bcce8bef7125bfbe0d7ffd049acb27d7b (patch) | |
tree | 4870880e9439f3082fa088213a5396b34634aec1 /build.gradle | |
parent | 9392b464e3b707b8ee544d0b03ffb106ea5ee0a8 (diff) | |
download | poi-27e0842bcce8bef7125bfbe0d7ffd049acb27d7b.tar.gz poi-27e0842bcce8bef7125bfbe0d7ffd049acb27d7b.zip |
fix gradle builds to better comply with IntelliJ
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1888936 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/build.gradle b/build.gradle index 882df1b6b4..0d4a19df6d 100644 --- a/build.gradle +++ b/build.gradle @@ -59,6 +59,7 @@ ant.taskdef(name: "junit", classname: "org.apache.tools.ant.taskdefs.optional.junitlauncher.confined.JUnitLauncherTask", classpath: configurations.antLibs.asPath) + wrapper { // https://stackoverflow.com/a/54741656/2066598 gradleVersion = '6.8' @@ -79,8 +80,8 @@ wrapper.finalizedBy adjustWrapperPropertiesFile Define properties for all projects, including this one */ allprojects { - apply plugin: 'eclipse' -// apply plugin: 'idea' +// apply plugin: 'eclipse' + apply plugin: 'idea' } /** @@ -133,6 +134,11 @@ subprojects { testImplementation "org.apache.logging.log4j:log4j-core:${log4jVersion}" } + task wrapper(type: Wrapper){ + // https://stackoverflow.com/a/65701523/2066598 + gradleVersion = '6.8' + } + jar { manifest { attributes 'Implementation-Title': 'Apache POI', 'Implementation-Version': project.version |