Last active
September 4, 2018 12:46
-
-
Save alien11689/bbb786b98535ed0dc6c4 to your computer and use it in GitHub Desktop.
Gradle config for kotlin and spock test cooperation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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