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/10/25 20:28:24 UTC

incubator-groovy git commit: Exclude Stax-API transitive dependency in StaxBuilderTest#testStaxBuilderExternalLibrary, because the download fails on builds.apache.org and it is not necessary anyway.

Repository: incubator-groovy
Updated Branches:
  refs/heads/master 5c556c06c -> beb36c8b2


Exclude Stax-API transitive dependency in StaxBuilderTest#testStaxBuilderExternalLibrary, because the download fails on builds.apache.org and it is not necessary anyway.


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

Branch: refs/heads/master
Commit: beb36c8b21983c1f3e9cd3ea4c1c9b93a8a5c576
Parents: 5c556c0
Author: pascalschumacher <pa...@gmx.net>
Authored: Sun Oct 25 20:28:01 2015 +0100
Committer: pascalschumacher <pa...@gmx.net>
Committed: Sun Oct 25 20:28:01 2015 +0100

----------------------------------------------------------------------
 subprojects/groovy-xml/src/spec/test/StaxBuilderTest.groovy | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-groovy/blob/beb36c8b/subprojects/groovy-xml/src/spec/test/StaxBuilderTest.groovy
----------------------------------------------------------------------
diff --git a/subprojects/groovy-xml/src/spec/test/StaxBuilderTest.groovy b/subprojects/groovy-xml/src/spec/test/StaxBuilderTest.groovy
index 707776a..7cf1f22 100644
--- a/subprojects/groovy-xml/src/spec/test/StaxBuilderTest.groovy
+++ b/subprojects/groovy-xml/src/spec/test/StaxBuilderTest.groovy
@@ -38,6 +38,7 @@ class StaxBuilderTest extends GroovyTestCase {
         assertScript '''
             // tag::stax_builder_external_library[]
             @Grab('org.codehaus.jettison:jettison:1.3.3')
+            @GrabExclude('stax:stax-api') // part of Java 6 and later
             import org.codehaus.jettison.mapped.*
 
             def writer = new StringWriter()