Files
spring-shell/samples/helloworld/build.gradle
mpollack f7afbca250 Remove FINE logging of what NamedProviders are being used
Add JUnit to sample build files
2013-07-25 17:37:51 -04:00

22 lines
486 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-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'