-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
19 lines (16 loc) · 740 Bytes
/
Copy pathbuild.gradle
File metadata and controls
19 lines (16 loc) · 740 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
apply plugin: 'java'
apply plugin: 'war'
apply plugin: 'eclipse'
repositories {
mavenCentral()
}
dependencies {
compile group:'org.springframework',name:'spring-core',version:'3.0.5.RELEASE'
compile group:'org.springframework',name:'spring-beans',version:'3.0.5.RELEASE'
compile group:'org.springframework',name:'spring-context',version:'3.0.5.RELEASE'
compile group:'org.springframework',name:'spring-web',version:'3.0.5.RELEASE'
compile group:'org.springframework',name:'spring-webmvc',version:'3.0.5.RELEASE'
compile group:'commons-logging',name:'commons-logging',version:'1.1.1'
compile group:'log4j',name:'log4j',version:'1.2.16'
testCompile group:'junit',name:'junit',version:'4.11'
}