-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
66 lines (60 loc) · 2.13 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
apply plugin: 'java'
apply plugin: 'eclipse'
ext {
springFrameworkVersion = '3.2.2.RELEASE'
springBatchVersion = '2.2.0.BUILD-SNAPSHOT'
springDataMongoDbVersion = '1.2.0.RELEASE'
hibernateVersion = '4.1.9.Final'
guavaVersion = '12.0.1'
junitVersion = '4.11'
hamcrestVersion = '1.3'
mockitoVersion = '1.9.5'
slf4jVersion = '1.7.2'
logBackVersion = '1.0.7'
cglibVersion = '2.2'
env = System.getenv()
}
version = '1.0.0'
sourceCompatibility = 1.7
jar {
manifest {
attributes 'Implementation-Title': 'Batch Application examples', 'Implementation-Version': version
}
}
repositories {
mavenCentral()
maven {
url "http://s3.amazonaws.com/maven.springframework.org/snapshot"
}
maven {
url "http://repo.springsource.org/libs-release"
}
maven {
url "https://code.lds.org/nexus/content/groups/main-repo"
}
}
dependencies {
compile "org.apache.commons:commons-lang3:3.1"
compile "commons-dbcp:commons-dbcp:1.4"
compile "commons-io:commons-io:2.1"
compile "commons-collections:commons-collections:3.2"
compile "org.springframework:spring-orm:$springFrameworkVersion"
compile "org.springframework:spring-context-support:$springFrameworkVersion"
compile "org.springframework.batch:spring-batch-core:$springBatchVersion"
compile "org.springframework.data:spring-data-mongodb:$springDataMongoDbVersion"
compile "org.hibernate:hibernate-core:$hibernateVersion"
compile "com.google.guava:guava:$guavaVersion"
compile "org.slf4j:slf4j-api:$slf4jVersion"
compile "org.slf4j:jul-to-slf4j:$slf4jVersion"
compile "org.slf4j:jcl-over-slf4j:$slf4jVersion"
compile "cglib:cglib-nodep:$cglibVersion"
testCompile "org.springframework:spring-test:$springFrameworkVersion"
testCompile "junit:junit:4.+"
testCompile "org.mockito:mockito-core:1.9.5"
runtime "ch.qos.logback:logback-core:$logBackVersion"
runtime "ch.qos.logback:logback-classic:$logBackVersion"
runtime "org.hsqldb:hsqldb:2.2.9"
runtime 'com.oracle:ojdbc6:11.2.0.3'
}
test {
}