-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
46 lines (34 loc) · 1.42 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
37
38
39
40
41
42
subprojects {
apply plugin: 'eclipse'
apply plugin: 'java'
apply plugin: 'application'
repositories {
mavenCentral()
}
configurations {
all*.exclude group: "commons-logging", module: "commons-logging"
}
dependencies {
compile group: 'org.springframework', name: 'spring-context', version: springVersion
compile group: 'org.springframework', name: 'spring-jdbc', version: springVersion
compile group: 'com.google.guava', name: 'guava', version: '17.0'
compile group: 'joda-time', name: 'joda-time', version: '2.5'
compile group: 'hsqldb', name: 'hsqldb', version: '1.8.0.10'
//logging
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.7'
runtime group: 'org.slf4j', name: 'jcl-over-slf4j', version: '1.7.7'
runtime group: 'org.apache.logging.log4j', name: 'log4j-slf4j-impl', version: '2.0.2'
runtime group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.0.2'
runtime group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.0.2'
testCompile group: 'junit', name: 'junit', version: '4.11'
testCompile group: 'org.easytesting', name: 'fest-assert', version: '1.4'
testCompile group: 'org.springframework', name: 'spring-test', version: springVersion
}
task cleanup(type: Delete, dependsOn: ['clean','cleanEclipse']){
delete 'bin', '.gradle', '.settings'
}
}
task cleanup(type: Delete){
dependsOn subprojects.cleanup
delete 'bin', '.gradle', '.settings'
}