buildscript { repositories { maven { url "http://repo.spring.io/libs-snapshot" } 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" } } dependencies { compile("org.springframework.boot:spring-boot-starter-batch:1.0.0.RC1") compile("org.hsqldb:hsqldb") testCompile("junit:junit:4.11") } task wrapper(type: Wrapper) { gradleVersion = '1.11' }