Skip to content

Commit

Permalink
Update README.md (#396)
Browse files Browse the repository at this point in the history
Add Kotlin Gradle DSL setup
  • Loading branch information
johanvergeer authored and sksamuel committed Aug 13, 2018
1 parent 42adfa3 commit 4b880a2
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions README.md
Expand Up @@ -152,6 +152,18 @@ dependencies {
}
```

or with Gradle Kotlin DSL

```kotlin
val test by tasks.getting(Test::class) {
useJUnitPlatform { }
}

dependencies {
testCompile("io.kotlintest:kotlintest-runner-junit5:3.1.9")
}
```

#### Maven

For maven you must configure the surefire plugin for junit tests.
Expand Down

0 comments on commit 4b880a2

Please sign in to comment.