20 lines
491 B
Groovy
20 lines
491 B
Groovy
description = 'Spring Shell Example'
|
|
apply plugin: 'base'
|
|
apply plugin: 'java'
|
|
apply plugin: 'eclipse'
|
|
apply plugin: 'application'
|
|
|
|
repositories {
|
|
maven { url "http://repo.springsource.org/libs-snapshot" }
|
|
maven { url "http://spring-roo-repository.springsource.org/release" }
|
|
}
|
|
|
|
dependencies {
|
|
compile "org.springframework.shell:spring-shell:$springShellVersion"
|
|
testCompile "junit:junit:$junitVersion"
|
|
}
|
|
|
|
mainClassName = "org.springframework.shell.Bootstrap"
|
|
|
|
defaultTasks 'installApp'
|