Skip to content
This repository was archived by the owner on Oct 25, 2022. It is now read-only.
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ This is a collection of handy Gradle plugins I end up using over and over.

## integration-test

Adds integration testing to Gradle projects, supporting java, groovy and scala. It's completely dynamic, so it'll only add source directories for the source plugins you have (e.g. `java`, `resources` and `groovy` but not `scala`).
Adds integration testing to Gradle projects, supporting Java, Groovy, Kotlin and Scala. It's completely dynamic, so it'll only add source directories for the source plugins you have (e.g. `java`, `resources`, `groovy` and `kotlin` but not `scala`).

### How it works

* It'll automatically pick directories under `src/integration-test/` that match `java`, `resources`, `groovy` and `scala`, depending on whether you have any (or all) of those plugins enabled.
* It'll automatically pick directories under `src/integration-test/` that match `java`, `resources`, `groovy`, `kotlin` and `scala`, depending on whether you have any (or all) of those plugins enabled.

### How to use

Expand Down
2 changes: 1 addition & 1 deletion integration-test.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// Add integration test source sets
sourceSets {
integrationTest { sourceSet ->
["java", "groovy", "scala", "resources"].each {
["java", "groovy", "kotlin", "scala", "resources"].each {
if (!sourceSet.hasProperty(it)) return
sourceSet."$it".srcDir file("src/integration-test/${it}")
}
Expand Down