-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
28 lines (25 loc) · 1016 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
apply plugin: 'java'
apply plugin: 'eclipse'
repositories {
mavenCentral()
}
dependencies {
compile 'com.google.guava:guava:19.0'
compile 'mysql:mysql-connector-java:5.1.34'
compile 'ch.qos.logback:logback-classic:1.1.2'
compile 'ch.qos.logback:logback-access:1.1.2'
compile 'ch.qos.logback:logback-core:1.1.2'
compile 'org.slf4j:slf4j-api:1.7.13'
compile 'javax.mail:mail:1.4.7'
compile 'org.springframework:spring-core:4.2.3.RELEASE'
compile 'org.springframework:spring-context:4.2.3.RELEASE'
compile 'org.springframework:spring-web:4.2.3.RELEASE'
compile 'org.springframework:spring-webmvc:4.2.3.RELEASE'
compile 'org.springframework:spring-jdbc:4.2.3.RELEASE'
compile 'org.springframework:spring-core:4.2.3.RELEASE'
compile 'commons-pool:commons-pool:1.6'
compile 'commons-dbcp:commons-dbcp:1.4'
testCompile group: 'junit', name: 'junit', version: '4.12'
testCompile 'com.fasterxml.jackson.core:jackson-databind:2.7.3'
testCompile 'org.springframework:spring-test:4.2.3.RELEASE'
}