Repository: aurora Updated Branches: refs/heads/master eec985d94 -> acd55ff52
Upgrade to Gradle 2.10 to pick up perf wins. Release notes are here: https://docs.gradle.org/2.10/release-notes https://docs.gradle.org/2.9/release-notes https://docs.gradle.org/2.8/release-notes Bugs closed: AURORA-1566 Reviewed at https://reviews.apache.org/r/41755/ Project: http://git-wip-us.apache.org/repos/asf/aurora/repo Commit: http://git-wip-us.apache.org/repos/asf/aurora/commit/acd55ff5 Tree: http://git-wip-us.apache.org/repos/asf/aurora/tree/acd55ff5 Diff: http://git-wip-us.apache.org/repos/asf/aurora/diff/acd55ff5 Branch: refs/heads/master Commit: acd55ff52ea11120df88945c86e4a908c5c44dc8 Parents: eec985d Author: John Sirois <[email protected]> Authored: Mon Dec 28 16:01:40 2015 -0800 Committer: Bill Farner <[email protected]> Committed: Mon Dec 28 16:01:40 2015 -0800 ---------------------------------------------------------------------- build.gradle | 7 +++++++ buildSrc/gradle.properties | 2 +- gradle/wrapper/gradle-wrapper.properties | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/aurora/blob/acd55ff5/build.gradle ---------------------------------------------------------------------- diff --git a/build.gradle b/build.gradle index 6d9d2d4..d32aea5 100644 --- a/build.gradle +++ b/build.gradle @@ -405,6 +405,13 @@ pmd { consoleOutput = true } +// As recommended here to work around PMD bugs exposed by otherwise +// handing it an `auxClasspath` to resolve types with: +// https://discuss.gradle.org/t/upgrading-gradle-from-2-7-to-2-8-results-in-pmd-false-positives/13460 +tasks.withType(Pmd) { + classpath = null +} + pmdMain { ruleSetFiles = files('config/pmd/common.xml', 'config/pmd/main.xml') } http://git-wip-us.apache.org/repos/asf/aurora/blob/acd55ff5/buildSrc/gradle.properties ---------------------------------------------------------------------- diff --git a/buildSrc/gradle.properties b/buildSrc/gradle.properties index c7d3890..7231dba 100644 --- a/buildSrc/gradle.properties +++ b/buildSrc/gradle.properties @@ -1,3 +1,3 @@ # When upgrading gradle versions, be sure to update the relevant files in the aurora-packaging # repo as well. See https://reviews.apache.org/r/39113/ for an example. -GRADLE_VERSION = 2.7 +GRADLE_VERSION = 2.10 http://git-wip-us.apache.org/repos/asf/aurora/blob/acd55ff5/gradle/wrapper/gradle-wrapper.properties ---------------------------------------------------------------------- diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 7eedd25..f70fc30 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-2.7-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-2.10-bin.zip
