Skip to content

Instantly share code, notes, and snippets.

@alien11689
Last active September 4, 2018 12:46
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save alien11689/bbb786b98535ed0dc6c4 to your computer and use it in GitHub Desktop.
Save alien11689/bbb786b98535ed0dc6c4 to your computer and use it in GitHub Desktop.
Gradle config for kotlin and spock test cooperation
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.0.0-beta-1103"
}
}
apply plugin: "kotlin"
apply plugin: "groovy"
repositories {
mavenCentral()
}
dependencies {
compile 'org.jetbrains.kotlin:kotlin-stdlib:1.0.0-beta-1103'
testCompile 'org.spockframework:spock-core:1.0-groovy-2.4'
testCompile 'org.objenesis:objenesis:2.2'
testCompile 'cglib:cglib-nodep:3.2.0'
testCompile 'org.codehaus.groovy:groovy-all:2.4.5'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment