35 lines
706 B
Groovy
35 lines
706 B
Groovy
buildscript {
|
|
repositories {
|
|
maven { url "http://repo.spring.io/libs-snapshot" }
|
|
mavenLocal()
|
|
}
|
|
dependencies {
|
|
classpath("org.springframework.boot:spring-boot-gradle-plugin:0.5.0.M6")
|
|
}
|
|
}
|
|
|
|
apply plugin: 'java'
|
|
apply plugin: 'eclipse'
|
|
apply plugin: 'idea'
|
|
apply plugin: 'spring-boot'
|
|
|
|
jar {
|
|
baseName = 'gs-batch-processing'
|
|
version = '0.1.0'
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url "http://repo.spring.io/libs-snapshot" }
|
|
}
|
|
|
|
dependencies {
|
|
compile("org.springframework.boot:spring-boot-starter-batch:0.5.0.M6")
|
|
compile("org.hsqldb:hsqldb")
|
|
testCompile("junit:junit:4.11")
|
|
}
|
|
|
|
task wrapper(type: Wrapper) {
|
|
gradleVersion = '1.8'
|
|
}
|