description = 'Spring Shell Example' apply plugin: 'base' apply plugin: 'java' apply plugin: 'eclipse' apply plugin: 'application' repositories { maven { url "https://repo.springsource.org/libs-milestone" } maven { url "https://repo.springsource.org/libs-release" } mavenLocal() mavenCentral() } dependencies { compile "org.springframework.shell:spring-shell:$springShellVersion" testCompile "junit:junit:$junitVersion" runtime "log4j:log4j:$log4jVersion" } mainClassName = "org.springframework.shell.Bootstrap" defaultTasks 'installApp' run { standardInput = System.in } task wrapper(type: Wrapper) { description = 'Generates gradlew[.bat] scripts' gradleVersion = '1.2' }