You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by pa...@apache.org on 2015/08/20 11:29:39 UTC

incubator-groovy git commit: GROOVY-7551: groovy-all has a dependency on com.googlecode:openbeans that is not available on Maven Central

Repository: incubator-groovy
Updated Branches:
  refs/heads/master ab9a8f226 -> a0a7c5532


GROOVY-7551: groovy-all has a dependency on com.googlecode:openbeans that is not available on Maven Central


Project: http://git-wip-us.apache.org/repos/asf/incubator-groovy/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-groovy/commit/a0a7c553
Tree: http://git-wip-us.apache.org/repos/asf/incubator-groovy/tree/a0a7c553
Diff: http://git-wip-us.apache.org/repos/asf/incubator-groovy/diff/a0a7c553

Branch: refs/heads/master
Commit: a0a7c5532caa0b9a3c973c569bf3c5b53db78a3b
Parents: ab9a8f2
Author: paulk <pa...@asert.com.au>
Authored: Thu Aug 20 13:58:03 2015 +1000
Committer: paulk <pa...@asert.com.au>
Committed: Thu Aug 20 19:29:00 2015 +1000

----------------------------------------------------------------------
 gradle/upload.gradle | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-groovy/blob/a0a7c553/gradle/upload.gradle
----------------------------------------------------------------------
diff --git a/gradle/upload.gradle b/gradle/upload.gradle
index 1a1e051..f74a32c 100644
--- a/gradle/upload.gradle
+++ b/gradle/upload.gradle
@@ -27,7 +27,7 @@ if (isUsingBintray) {
 def removeJarjaredDependencies = { p ->
     p.dependencies.removeAll(p.dependencies.findAll {
         it.groupId == 'org.codehaus.groovy' ||
-                (['asm', 'asm-util', 'asm-analysis', 'asm-tree', 'asm-commons', 'antlr', 'commons-cli'].contains(it.artifactId))
+                (['asm', 'asm-util', 'asm-analysis', 'asm-tree', 'asm-commons', 'antlr', 'commons-cli', 'openbeans'].contains(it.artifactId))
     })
 }