Upgrade Gradle Rat Plugin to 0.3.1
Project: http://git-wip-us.apache.org/repos/asf/polygene-java/repo Commit: http://git-wip-us.apache.org/repos/asf/polygene-java/commit/fc7c4326 Tree: http://git-wip-us.apache.org/repos/asf/polygene-java/tree/fc7c4326 Diff: http://git-wip-us.apache.org/repos/asf/polygene-java/diff/fc7c4326 Branch: refs/heads/develop Commit: fc7c43269a6afb4a4e3df5f97faf7773e4bfd03f Parents: 2807487 Author: Paul Merlin <[email protected]> Authored: Mon Jul 17 07:21:20 2017 +0200 Committer: Paul Merlin <[email protected]> Committed: Mon Jul 17 07:21:20 2017 +0200 ---------------------------------------------------------------------- buildSrc/build.gradle | 2 +- .../gradle/structure/distributions/DistributionsPlugin.groovy | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/polygene-java/blob/fc7c4326/buildSrc/build.gradle ---------------------------------------------------------------------- diff --git a/buildSrc/build.gradle b/buildSrc/build.gradle index 1927808..5e870a5 100644 --- a/buildSrc/build.gradle +++ b/buildSrc/build.gradle @@ -28,7 +28,7 @@ repositories { dependencies { compile gradleApi() compile localGroovy() - compile 'gradle.plugin.org.nosphere.apache:creadur-rat-gradle:0.3.0' + compile 'gradle.plugin.org.nosphere.apache:creadur-rat-gradle:0.3.1' compile 'gradle.plugin.org.nosphere.honker:honker-gradle:0.3.0' compile 'org.hibernate.build.gradle:gradle-maven-publish-auth:2.0.1' compile 'org.apache.httpcomponents:httpclient:4.5.2' http://git-wip-us.apache.org/repos/asf/polygene-java/blob/fc7c4326/buildSrc/src/main/groovy/org/apache/polygene/gradle/structure/distributions/DistributionsPlugin.groovy ---------------------------------------------------------------------- diff --git a/buildSrc/src/main/groovy/org/apache/polygene/gradle/structure/distributions/DistributionsPlugin.groovy b/buildSrc/src/main/groovy/org/apache/polygene/gradle/structure/distributions/DistributionsPlugin.groovy index d512d74..3cef75e 100644 --- a/buildSrc/src/main/groovy/org/apache/polygene/gradle/structure/distributions/DistributionsPlugin.groovy +++ b/buildSrc/src/main/groovy/org/apache/polygene/gradle/structure/distributions/DistributionsPlugin.groovy @@ -251,6 +251,9 @@ class DistributionsPlugin implements Plugin<Project> task.group = TaskGroups.DISTRIBUTION_VERIFICATION task.description = 'Checks the source distribution using Apache RAT.' task.dependsOn TaskNames.STAGE_SOURCE_DIST + task.plainOutput = true + task.htmlOutput = true + task.xmlOutput = false task.setInputDir unpackedSrcDistDir.absolutePath task.onlyIf { !releaseSpec.developmentVersion } task.excludes = [ @@ -436,6 +439,9 @@ class DistributionsPlugin implements Plugin<Project> task.description = "Checks the binary distribution using Apache RAT." task.onlyIf { !releaseSpec.developmentVersion } task.dependsOn TaskNames.STAGE_BINARY_DIST + task.plainOutput = true + task.htmlOutput = true + task.xmlOutput = false task.inputDir = unpackedBinDistDir.absolutePath task.reportDir = project.file( 'build/reports/rat-bin-dist' ) task.excludes = [
