diff options
author | Dominik Stadler <centic@apache.org> | 2021-03-28 19:54:54 +0000 |
---|---|---|
committer | Dominik Stadler <centic@apache.org> | 2021-03-28 19:54:54 +0000 |
commit | 6dd39585d5575c35f7cdc70a1f2cbd1453d134c3 (patch) | |
tree | 1026d24b412bf0ba9e8bb37d9a9f6a7ac829d6cc /build.gradle | |
parent | d2958cca7ffa844d5bcf3f552199e598ca53540f (diff) | |
download | poi-6dd39585d5575c35f7cdc70a1f2cbd1453d134c3.tar.gz poi-6dd39585d5575c35f7cdc70a1f2cbd1453d134c3.zip |
Remove support for japicmp from Gradle build
I now spent a few hours trying to make it work and the Gradle support is
simply not production-ready and also not maintained, it triggers various
strange errors and does not supporting the usual Gradle conventions.
So I do not want to spend more time on it, feel free to revive it if you know how
to make this work properly.
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1888138 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/build.gradle b/build.gradle index df2d2ba6d7..b9327fcf23 100644 --- a/build.gradle +++ b/build.gradle @@ -20,8 +20,6 @@ buildscript { } dependencies { - // 2.x fails with "Could not get unknown property 'me'" - classpath 'me.champeau.gradle:japicmp-gradle-plugin:0.1.2' classpath "org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:3.0" } } @@ -88,16 +86,12 @@ subprojects { apply plugin: 'java-library' apply plugin: 'jacoco' - // See https://github.com/melix/japicmp-gradle-plugin - apply plugin: 'me.champeau.gradle.japicmp' - version = '5.0.1-SNAPSHOT' ext { bouncyCastleVersion = '1.68' commonsCodecVersion = '1.15' commonsCompressVersion = '1.20' commonsMathVersion = '3.6.1' - japicmpversion = '5.0.0' junitVersion = '5.7.0' log4jVersion = '2.14.0' mockitoVersion = '3.6.0' @@ -204,13 +198,4 @@ subprojects { } } } - - task(japicmp, type: me.champeau.gradle.ArtifactJapicmpTask, dependsOn: jar) { - to = jar.archivePath - onlyModified = true - onlyBinaryIncompatibleModified = true - failOnModification = false - txtOutputFile = file("$buildDir/reports/japi.txt") - htmlOutputFile = file("$buildDir/reports/japi.html") - } }
\ No newline at end of file |