Reworked tutorial sample to code config

This commit is contained in:
Arjen Poutsma
2014-04-29 14:10:03 +02:00
parent 64b59b9dcc
commit ea45657322
8 changed files with 78 additions and 129 deletions

View File

@@ -13,8 +13,8 @@ apply plugin: 'idea'
apply plugin: 'war'
apply plugin: 'tomcat'
ext.springVersion = '3.2.4.RELEASE'
ext.springWsVersion = '2.1.4.RELEASE'
ext.springVersion = '4.0.2.RELEASE'
ext.springWsVersion = '2.2.0.BUILD-SNAPSHOT'
ext.tomcatVersion = '7.0.42'
dependencies {
@@ -22,7 +22,11 @@ dependencies {
compile("org.jdom:jdom:2.0.1")
runtime("jaxen:jaxen:1.1.4")
runtime("log4j:log4j:1.2.16")
runtime("org.apache.ws.xmlschema:xmlschema-core:2.1.0")
runtime("wsdl4j:wsdl4j:1.6.1")
providedCompile("javax.servlet:javax.servlet-api:3.0.1")
testCompile("junit:junit:4.10")
testCompile("org.easymock:easymock:3.1")
@@ -35,6 +39,7 @@ dependencies {
repositories {
maven { url 'http://repo.spring.io/libs-release' }
maven { url 'http://repo.spring.io/libs-snapshot' }
}
task wrapper(type: Wrapper) {