-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
30 lines (24 loc) · 858 Bytes
/
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
apply plugin: 'war'
apply plugin: 'java'
apply plugin: 'eclipse'
sourceCompatibility = 1.7
version = 1.0
manifest {
attributes 'Implementation-Title': 'SpringRestTemplate', 'Implementation-Version': version
}
dependencies {
compile 'javax.servlet:servlet-api:2.5'
compile 'ch.qos.logback:logback-classic:1.0.13'
compile 'org.springframework:spring-core:4.0.5.RELEASE'
compile 'org.springframework:spring-context:4.0.5.RELEASE'
compile 'org.springframework:spring-context-support:4.0.5.RELEASE'
compile 'org.springframework:spring-expression:4.0.5.RELEASE'
compile 'org.springframework:spring-beans:4.0.5.RELEASE'
compile 'org.springframework:spring-webmvc:4.0.5.RELEASE'
compile 'org.springframework:spring-web:4.0.5.RELEASE'
testCompile 'junit:junit:4.11'
testCompile 'org.mockito:mockito-all:1.9.5'
}
repositories {
mavenCentral()
}