Files
spring-shell/samples/helloworld/build.gradle
2012-10-02 22:06:29 +03:00

20 lines
487 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"
runtime "log4j:log4j:$log4jVersion"
}
mainClassName = "org.springframework.shell.Bootstrap"
defaultTasks 'installApp'