-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
32 lines (27 loc) · 1.13 KB
/
build.gradle
File metadata and controls
32 lines (27 loc) · 1.13 KB
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
apply plugin: 'java'
apply plugin: 'war'
sourceCompatibility = 1.8
repositories {
jcenter()
mavenCentral()
}
String springVersion = '4.2.5.RELEASE'
dependencies {
compile 'org.springframework:spring-core:' + springVersion
compile 'org.springframework:spring-webmvc:' + springVersion
compile 'org.springframework:spring-jdbc:' + springVersion
compile 'org.springframework:spring-tx:' + springVersion
compile 'org.springframework.security:spring-security-core:' + springVersion
compile 'org.springframework.security:spring-security-web:' + springVersion
compile 'org.springframework.security:spring-security-config:' + springVersion
compile 'org.springframework.security:spring-security-taglibs:' + springVersion
compile 'javax.servlet:javax.servlet-api:+'
compile 'javax.servlet:jsp-api:+'
compile 'javax.servlet:jstl:+'
compile 'javax.validation:validation-api:+'
compile 'org.hibernate:hibernate-validator:5.2.4.Final'
compile 'com.fasterxml.jackson.core:jackson-databind:+'
compile 'org.json:json:20160810'
compile 'mysql:mysql-connector-java:+'
compile 'log4j:log4j:+'
}