forked from spring-projects/spring-ws-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
47 lines (38 loc) · 1.2 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'org.gradle.api.plugins:gradle-tomcat-plugin:0.9.9'
}
}
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'war'
apply plugin: 'tomcat'
ext.springVersion = '4.0.2.RELEASE'
ext.springWsVersion = '2.2.0.BUILD-SNAPSHOT'
ext.tomcatVersion = '7.0.42'
dependencies {
compile("org.springframework.ws:spring-ws-core:$springWsVersion")
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")
tomcat("org.apache.tomcat.embed:tomcat-embed-core:$tomcatVersion",
"org.apache.tomcat.embed:tomcat-embed-logging-juli:$tomcatVersion")
tomcat("org.apache.tomcat.embed:tomcat-embed-jasper:$tomcatVersion") {
exclude group: 'org.eclipse.jdt.core.compiler', module: 'ecj'
}
}
repositories {
maven { url 'http://repo.spring.io/libs-release' }
maven { url 'http://repo.spring.io/libs-snapshot' }
}
task wrapper(type: Wrapper) {
gradleVersion = '1.8'
}