Repository: groovy Updated Branches: refs/heads/GROOVY_2_6_X be7d85b4a -> ae4d4be89
Fix Codenarc execution Project: http://git-wip-us.apache.org/repos/asf/groovy/repo Commit: http://git-wip-us.apache.org/repos/asf/groovy/commit/ae4d4be8 Tree: http://git-wip-us.apache.org/repos/asf/groovy/tree/ae4d4be8 Diff: http://git-wip-us.apache.org/repos/asf/groovy/diff/ae4d4be8 Branch: refs/heads/GROOVY_2_6_X Commit: ae4d4be899793ec4572966743863faf125a73122 Parents: be7d85b Author: Cedric Champeau <[email protected]> Authored: Sun Dec 17 20:52:37 2017 +0100 Committer: Cedric Champeau <[email protected]> Committed: Sun Dec 17 20:53:21 2017 +0100 ---------------------------------------------------------------------- gradle/quality.gradle | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/groovy/blob/ae4d4be8/gradle/quality.gradle ---------------------------------------------------------------------- diff --git a/gradle/quality.gradle b/gradle/quality.gradle index b59f1d7..bf0f1ee 100644 --- a/gradle/quality.gradle +++ b/gradle/quality.gradle @@ -30,7 +30,12 @@ allprojects { // because version ranges are evil // and because it causes bnd to be brought transitively // I am unsure why; says it is required by groovy-ant but its pom.xml does not declare so - exclude group:'org.codehaus.groovy' + resolutionStrategy.dependencySubstitution { + substitute module("org.codehaus.groovy:groovy") with project(":") + substitute module("org.codehaus.groovy:groovy-ant") with project(":groovy-ant") + substitute module("org.codehaus.groovy:groovy-xml") with project(":groovy-xml") + substitute module("org.codehaus.groovy:groovy-groovydoc") with project(":groovy-groovydoc") + } } // license {
