-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathbuild.gradle
More file actions
37 lines (28 loc) · 781 Bytes
/
build.gradle
File metadata and controls
37 lines (28 loc) · 781 Bytes
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
apply plugin: 'java'
apply plugin: 'war'
apply plugin: 'jetty'
repositories {
mavenCentral()
}
ext {
springVersion = '3.2.1.RELEASE'
}
test {
scanForTestClasses = false
include '**/*Test.class'
}
httpPort = 8090
jettyRun {
reload = 'automatic'
scanIntervalSeconds = 1
}
dependencies {
compile 'com.google.guava:guava:14.0.1',
"org.springframework:spring-core:$springVersion",
"org.springframework:spring-webmvc:$springVersion",
"org.springframework:spring-web:$springVersion",
"org.springframework:spring-context:$springVersion",
"javax.servlet:servlet-api:2.5",
"ch.qos.logback:logback-classic:1.0.13"
testCompile "org.mockito:mockito-all:1.8.5", 'junit:junit:4.11'
}