Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,18 @@ task integrationTest(type: Test) {

```

If you're using Gradle with Kotlin (build.gradle.kts), use can enable and use the plugin like this:

```kotlin
plugins {
id("com.sourcemuse.mongo") version "2.0.0"
}
// ...
tasks.withType<Test> {
extra.set("runWithMongoDb", true)
}
```

### Configuration ###

Configure your Mongo instances inside a ```mongo``` block:
Expand Down