Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- group 'tdd'
- version '1.0-SNAPSHOT'
- buildscript {
- ext.kotlin_version = '1.0.4'
- repositories {
- mavenCentral()
- }
- dependencies {
- classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
- classpath 'org.junit.platform:junit-platform-gradle-plugin:1.0.0-M2'
- }
- }
- repositories {
- mavenCentral()
- }
- apply plugin: 'kotlin'
- dependencies {
- compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
- testCompile group: 'org.jetbrains.kotlin', name: 'kotlin-test', version: '1.0.5'
- testCompile 'org.jetbrains.spek:spek-api:1.0.89'
- testRuntime 'org.jetbrains.spek:spek-junit-platform-engine:1.0.89'
- }
- apply plugin: 'idea'
- apply plugin: 'org.junit.platform.gradle.plugin'
- junitPlatform {
- engines {
- include 'spek'
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement