Search code examples
grailsgroovygroovyws

Is there a groovyws.jar with all his dependences?


I'm using Grails and want to use groovyws to call an web-service.

But my groovyws.jar (0.5.2) have MANY dependences that I can't solve.

Is there any jar with all dependences included?

Note: I tried put in BuildConfig.groovy, this

dependencies {
'org.codehaus.groovy.modules:groovyws:0.5.2'
}

but I'm getting error:

Error executing script Compile: loader constraint violation: when resolving overridden method "org.apache.xerces.jaxp.SAXParserImpl.getParser()Lorg/xml/sax/Parser;" the class loader (instance of org/codehaus/groovy/grails/cli/support/GrailsRootLoader) of the current class, org/apache/xerces/jaxp/SAXParserImpl, and its superclass loader (instance of ), have different Class objects for the type org/xml/sax/Parser used in the signature


Solution

  • I found:

    Tks a lot!

    (search for "groovyws standalone")

    Note: I saw this tip here.