mirror of
https://github.com/sdkman/sdkman-cli.git
synced 2026-02-01 02:03:18 -05:00
25 lines
747 B
Groovy
25 lines
747 B
Groovy
apply plugin: 'groovy'
|
|
|
|
task wrapper(type: Wrapper) {
|
|
gradleVersion = '1.2'
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
groovy group: 'org.codehaus.groovy', name: 'groovy', version: '2.0.5'
|
|
groovy group: 'org.codehaus.groovy', name: 'groovy-templates', version: '2.0.5'
|
|
testCompile group: 'junit', name: 'junit', version: '4.10'
|
|
testCompile group: 'info.cukes', name: 'cucumber-junit', version: '1.0.11'
|
|
testCompile group: 'info.cukes', name: 'cucumber-groovy', version: '1.0.11'
|
|
testCompile group: 'org.vert-x', name: 'vertx-core', version: '1.2.3.final'
|
|
testCompile group: 'org.vert-x', name: 'vertx-lang-groovy', version: '1.2.3.final'
|
|
}
|
|
|
|
task copyTask(type: Copy) {
|
|
from "scripts/gvm"
|
|
into 'bin'
|
|
}
|