Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id E9DF6200CD6 for ; Mon, 17 Jul 2017 07:22:03 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id E867B16411A; Mon, 17 Jul 2017 05:22:03 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 3EE36164114 for ; Mon, 17 Jul 2017 07:22:03 +0200 (CEST) Received: (qmail 15910 invoked by uid 500); 17 Jul 2017 05:22:02 -0000 Mailing-List: contact commits-help@polygene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@polygene.apache.org Delivered-To: mailing list commits@polygene.apache.org Received: (qmail 15890 invoked by uid 99); 17 Jul 2017 05:22:01 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 17 Jul 2017 05:22:01 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id C6224E9809; Mon, 17 Jul 2017 05:22:00 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: paulmerlin@apache.org To: commits@polygene.apache.org Date: Mon, 17 Jul 2017 05:22:01 -0000 Message-Id: <54bc4ee68c144308baf18aba8d79d512@git.apache.org> In-Reply-To: <0bcfc0724141458a97710d88bc3573d9@git.apache.org> References: <0bcfc0724141458a97710d88bc3573d9@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [2/2] polygene-java git commit: Upgrade Gradle Rat Plugin to 0.3.1 archived-at: Mon, 17 Jul 2017 05:22:04 -0000 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 Authored: Mon Jul 17 07:21:20 2017 +0200 Committer: Paul Merlin 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 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 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 = [