-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbuild.gradle
36 lines (29 loc) · 1.19 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
28
29
30
31
32
33
34
35
36
group 'com.yanzhenjie.kalle.server'
version '1.0-SNAPSHOT'
apply plugin: 'java'
apply plugin: 'war'
sourceCompatibility = 1.8
repositories {
jcenter()
}
dependencies {
compile 'com.google.code.gson:gson:2.8.2'
compile 'jstl:jstl:1.2'
compile 'javax:javaee-api:8.0'
compile 'javax.servlet:javax.servlet-api:3.1.0'
compile 'commons-dbcp:commons-dbcp:1.4'
compile 'commons-fileupload:commons-fileupload:1.3.3'
compile 'commons-io:commons-io:2.6'
compile 'commons-codec:commons-codec:1.11'
compile 'org.springframework:spring-core:4.3.13.RELEASE'
compile 'org.springframework:spring-oxm:4.3.13.RELEASE'
compile 'org.springframework:spring-aop:4.3.13.RELEASE'
compile 'org.springframework:spring-context-support:4.3.13.RELEASE'
compile 'org.springframework:spring-beans:4.3.13.RELEASE'
compile 'org.springframework:spring-context:4.3.13.RELEASE'
compile 'org.springframework:spring-expression:4.3.13.RELEASE'
compile 'org.springframework:spring-tx:4.3.13.RELEASE'
compile 'org.springframework:spring-web:4.3.13.RELEASE'
compile 'org.springframework:spring-webmvc:4.3.13.RELEASE'
compile 'org.springframework:spring-aspects:4.3.13.RELEASE'
}