Repository: groovy Updated Branches: refs/heads/master 67090f98a -> bd279424a
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/bd279424 Tree: http://git-wip-us.apache.org/repos/asf/groovy/tree/bd279424 Diff: http://git-wip-us.apache.org/repos/asf/groovy/diff/bd279424 Branch: refs/heads/master Commit: bd279424a7298ea3648604c45fa396c355d512d2 Parents: 67090f9 Author: Cedric Champeau <[email protected]> Authored: Sun Dec 17 20:52:37 2017 +0100 Committer: Cedric Champeau <[email protected]> Committed: Sun Dec 17 20:52:37 2017 +0100 ---------------------------------------------------------------------- gradle/quality.gradle | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/groovy/blob/bd279424/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 {
