-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
28 lines (24 loc) · 1.01 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
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'war'
repositories {
mavenCentral()
}
dependencies {
compile "org.springframework:spring-aop:4.2.4.RELEASE",
"org.springframework:spring-context:4.2.4.RELEASE",
"org.springframework:spring-core:4.2.4.RELEASE",
"org.springframework:spring-expression:4.2.4.RELEASE",
"org.springframework:spring-web:4.2.4.RELEASE",
"org.springframework:spring-webmvc:4.2.4.RELEASE",
"org.springframework:spring-context-support:4.2.4.RELEASE",
"org.springframework:spring-jdbc:4.2.4.RELEASE",
"org.springframework:spring-orm:4.2.4.RELEASE",
"org.springframework:spring-tx:4.2.4.RELEASE",
"com.fasterxml.jackson.core:jackson-databind:2.7.1-1",
"javax.servlet:javax.servlet-api:3.1.0",
"org.apache.httpcomponents:httpclient:4.5.1",
"org.slf4j:slf4j-simple:1.7.16",
"com.sun.xml.security:apache-xmlsec:1.0.1",
"javax.servlet:jstl:1.2"
}