java-tutorials/initial/build.gradle

31 lines
559 B
Groovy
Raw Normal View History

2013-08-01 21:37:36 -04:00
buildscript {
repositories {
maven { url "http://repo.spring.io/libs-snapshot" }
2013-08-01 21:37:36 -04:00
mavenLocal()
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
jar {
baseName = 'gs-batch-processing'
version = '0.1.0'
}
repositories {
mavenCentral()
maven { url "http://repo.spring.io/libs-snapshot" }
2013-08-01 21:37:36 -04:00
}
dependencies {
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
}
task wrapper(type: Wrapper) {
2014-02-12 09:17:25 -06:00
gradleVersion = '1.11'
2013-08-01 21:37:36 -04:00
}