Files
spring-shell/build.gradle
2012-04-25 11:06:40 +08:00

49 lines
1.5 KiB
Groovy

apply plugin: 'base'
apply plugin: "java"
apply plugin: 'eclipse'
apply plugin: 'idea'
allprojects {
group = 'org.springframework.shell'
version = "$springShellVersion"
repositories {
mavenLocal()
mavenCentral()
maven{
url "http://repository.springsource.com/maven/bundles/release"
url "http://maven.springframework.org/release"
url "http://maven.springframework.org/milestone"
url "http://maven.springframework.org/snapshot"
url "http://oss.sonatype.org/content/repositories/snapshots"
url "http://springframework.svn.sourceforge.net/svnroot/springframework/repos/repo-ext/"
url "http://www.datanucleus.org/downloads/maven2/"
url "http://conjars.org/repo"
}
}
}
dependencies {
runtime "log4j:log4j:$log4jVersion"
compile "org.springframework:spring-core:$springVersion"
compile "org.springframework:spring-context-support:$springVersion"
compile "commons-io:commons-io:$commonsioVersion"
compile "net.sourceforge.jline:jline:$jlineVersion"
compile "org.fusesource.jansi:jansi:$jansiVersion"
compile "cglib:cglib:$cglibVersion"
// Testing
testCompile "junit:junit:$junitVersion"
testCompile "org.mockito:mockito-core:$mockitoVersion"
testCompile "org.springframework:spring-test:$springVersion"
testCompile "javax.annotation:jsr250-api:1.0"
testRuntime "org.codehaus.groovy:groovy:$groovyVersion"
}
task wrapper(type: Wrapper) {
}
defaultTasks 'build'