-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
59 lines (53 loc) · 1.68 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
48
49
50
51
52
53
54
55
56
57
58
59
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.1.8.RELEASE")
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'spring-boot'
jar {
baseName = 'soph-collab'
version = '0.1.0'
}
repositories {
mavenCentral()
}
configurations {
runtime.exclude group: "javax.servlet", module: "servlet-api"
}
dependencies {
// tag::jetty[]
compile("org.springframework.boot:spring-boot-starter-web") {
exclude module: "spring-boot-starter-tomcat"
}
compile("org.springframework.boot:spring-boot-starter-jetty")
// end::jetty[]
// tag::actuator[]
compile("org.springframework.boot:spring-boot-starter-actuator")
compile("org.springframework.boot:spring-boot-starter-thymeleaf") {
exclude module: "spring-boot-starter-tomcat"
}
// end::actuator[]
runtime("wsdl4j:wsdl4j:1.6.2")
compile("commons-lang:commons-lang:2.6")
runtime("org.apache.ws.commons.schema:XmlSchema:1.4.7")
runtime("org.apache.ws.commons.axiom:axiom:1.2.14")
runtime("org.apache.ws.commons.axiom:axiom-api:1.2.14")
runtime("org.apache.ws.commons.axiom:axiom-dom:1.2.14")
runtime("org.apache.ws.commons.axiom:axiom-impl:1.2.14")
compile("org.apache.axis2:axis2:1.6.2")
runtime("org.apache.axis2:axis2-adb:1.6.2")
runtime("org.apache.axis2:axis2-kernel:1.6.2")
runtime("org.apache.axis2:axis2-transport-http:1.6.2")
runtime("org.apache.axis2:axis2-transport-local:1.6.2")
compile files("eutils/eutils_axis2.jar")
testCompile("junit:junit")
}
task wrapper(type: Wrapper) {
gradleVersion = '2.1'
}