2013-08-01 21:37:36 -04:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
2014-06-10 19:16:14 -05:00
|
|
|
mavenCentral()
|
2013-08-01 21:37:36 -04:00
|
|
|
}
|
2014-02-18 16:33:02 -06:00
|
|
|
dependencies {
|
2019-03-20 10:00:18 -05:00
|
|
|
classpath("org.springframework.boot:spring-boot-gradle-plugin:2.1.3.RELEASE")
|
2014-02-18 16:33:02 -06:00
|
|
|
}
|
2013-08-01 21:37:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
apply plugin: 'java'
|
|
|
|
apply plugin: 'eclipse'
|
|
|
|
apply plugin: 'idea'
|
2016-11-30 10:06:01 -06:00
|
|
|
apply plugin: 'org.springframework.boot'
|
2018-03-01 09:50:33 -06:00
|
|
|
apply plugin: 'io.spring.dependency-management'
|
2013-08-01 21:37:36 -04:00
|
|
|
|
2018-03-05 23:21:18 -06:00
|
|
|
bootJar {
|
2013-08-01 21:37:36 -04:00
|
|
|
baseName = 'gs-batch-processing'
|
|
|
|
version = '0.1.0'
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
2015-06-12 14:03:07 -04:00
|
|
|
sourceCompatibility = 1.8
|
|
|
|
targetCompatibility = 1.8
|
|
|
|
|
2013-08-01 21:37:36 -04:00
|
|
|
dependencies {
|
2014-02-17 15:50:52 -06:00
|
|
|
compile("org.springframework.boot:spring-boot-starter-batch")
|
2013-08-01 21:37:36 -04:00
|
|
|
compile("org.hsqldb:hsqldb")
|
2014-02-13 12:38:11 -06:00
|
|
|
testCompile("junit:junit")
|
2013-08-01 21:37:36 -04:00
|
|
|
}
|
|
|
|
|