Forum Discussion

irxn's avatar
irxn
Occasional Contributor
9 years ago
Solved

Problems adding SOAP UI in my grails application

Hi,

 

I want to use SOAP UI in my grails application, but I'm not able to set the right buildconfig.groovy settings.

 

My settings are (got it from forum):

repositories {
inherits true // Whether to inherit repository definitions from plugins

grailsPlugins()
grailsHome()
mavenLocal()
grailsCentral()
mavenCentral()
// uncomment these (or add new ones) to enable remote dependency resolution from public Maven repositories
//mavenRepo "http://repository.codehaus.org"
//mavenRepo "http://download.java.net/maven/2/"
//mavenRepo "http://repository.jboss.com/maven2/"
mavenRepo "http://www.soapui.org/repository/maven2/"
mavenRepo "http://repo.reficio.org/maven/"
mavenRepo "http://download.java.net/maven/2/"
}

dependencies {
// specify dependencies here under either 'build', 'compile', 'runtime', 'test' or 'provided' scopes e.g.
// runtime 'mysql:mysql-connector-java:5.1.29'
// runtime 'org.postgresql:postgresql:9.3-1101-jdbc41'
test "org.grails:grails-datastore-test-support:1.0-grails-2.4"

runtime 'eviware:soapui:4.5.1'
runtime 'eviware:soapui-xmlbeans:4.5.1'
runtime 'eviware:wsdl-xmlbeans:1.1'
runtime 'eviware:wadl-xmlbeans:1.1'
runtime 'eviware:soap-xmlbeans:1.2'
runtime 'eviware:ext-xmlbeans:1.2'
runtime 'eviware:j2ee-xmlbeans:1.3'
runtime 'eviware:policy-xmlbeans:1.5'
runtime 'org.apache.commons:commons-cli:1.0'
}

plugins {
// plugins for the build system only
build ":tomcat:7.0.55"

// plugins for the compile step
compile ":scaffolding:2.1.2"
compile ':cache:1.1.7'
compile ":asset-pipeline:1.9.6"

// plugins needed at runtime but not for compilation
runtime ":hibernate4:4.3.5.5" // or ":hibernate:3.6.10.17"
runtime ":database-migration:1.4.0"
runtime ":jquery:1.11.1"

// Uncomment these to enable additional asset-pipeline capabilities
//compile ":sass-asset-pipeline:1.9.0"
//compile ":less-asset-pipeline:1.10.0"
//compile ":coffee-asset-pipeline:1.8.0"
//compile ":handlebars-asset-pipeline:1.3.0.3"
}

 

I get following errors on building application:

|Loading Grails 2.4.3
|Configuring classpath
|Downloading: eviware/soapui/4.5.1/soapui-4.5.1.pom
|Downloading: eviware/soapui-xmlbeans/4.5.1/soapui-xmlbeans-4.5.1.pom
|Downloading: eviware/wsdl-xmlbeans/1.1/wsdl-xmlbeans-1.1.pom
|Downloading: eviware/wadl-xmlbeans/1.1/wadl-xmlbeans-1.1.pom
|Downloading: eviware/soap-xmlbeans/1.2/soap-xmlbeans-1.2.pom
|Downloading: eviware/ext-xmlbeans/1.2/ext-xmlbeans-1.2.pom
|Downloading: eviware/policy-xmlbeans/1.5/policy-xmlbeans-1.5.pom
Error |
Resolve error obtaining dependencies: Failed to read artifact descriptor for eviware:soapui:jar:4.5.1 (Use --stacktrace to see the full trace)

 

What am I missing?

 

Best regards,

Peter