2013-08-01 21:37:36 -04:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
2013-09-30 08:18:46 -05:00
|
|
|
maven { url "http://repo.spring.io/libs-snapshot" }
|
2013-08-01 21:37:36 -04:00
|
|
|
mavenLocal()
|
|
|
|
}
|
|
|
|
dependencies {
|
2014-01-22 12:21:13 -06:00
|
|
|
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.0.0.RC1")
|
2013-08-01 21:37:36 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
apply plugin: 'java'
|
|
|
|
apply plugin: 'eclipse'
|
|
|
|
apply plugin: 'idea'
|
|
|
|
apply plugin: 'spring-boot'
|
|
|
|
|
|
|
|
jar {
|
|
|
|
baseName = 'gs-batch-processing'
|
|
|
|
version = '0.1.0'
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
2013-09-30 08:18:46 -05:00
|
|
|
maven { url "http://repo.spring.io/libs-snapshot" }
|
2013-08-01 21:37:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2014-01-22 12:21:13 -06:00
|
|
|
compile("org.springframework.boot:spring-boot-starter-batch:1.0.0.RC1")
|
2013-08-01 21:37:36 -04:00
|
|
|
compile("org.hsqldb:hsqldb")
|
|
|
|
testCompile("junit:junit:4.11")
|
|
|
|
}
|
|
|
|
|
|
|
|
task wrapper(type: Wrapper) {
|
2013-09-30 11:58:33 -05:00
|
|
|
gradleVersion = '1.8'
|
2013-08-01 21:37:36 -04:00
|
|
|
}
|