diff options
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 |