diff options
| author | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2021-02-23 11:46:06 +0100 |
|---|---|---|
| committer | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2021-02-23 11:46:06 +0100 |
| commit | 0b092b352dc29ce69f6f126eb7857a1243a6ef62 (patch) | |
| tree | 44047aba0874b80ffd406cfc6c7776bde0eaaf90 /simulator/opendc-workflows | |
| parent | bde79549149eca269c033302729ba06043efb29c (diff) | |
Extract testing conventions from Kotlin conventions
This change extracts the configuration for test from the Kotlin library
conventions.
Diffstat (limited to 'simulator/opendc-workflows')
| -rw-r--r-- | simulator/opendc-workflows/build.gradle.kts | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/simulator/opendc-workflows/build.gradle.kts b/simulator/opendc-workflows/build.gradle.kts index f1ed7e62..dbd135a8 100644 --- a/simulator/opendc-workflows/build.gradle.kts +++ b/simulator/opendc-workflows/build.gradle.kts @@ -24,7 +24,8 @@ description = "Workflow service for OpenDC" /* Build configuration */ plugins { - `kotlin-library-convention` + `kotlin-library-conventions` + `testing-conventions` } dependencies { @@ -41,7 +42,5 @@ dependencies { exclude("org.jetbrains.kotlin", module = "kotlin-reflect") } testImplementation(kotlin("reflect")) - testRuntimeOnly("org.slf4j:slf4j-simple:${Library.SLF4J}") - testImplementation("org.junit.jupiter:junit-jupiter-api:${Library.JUNIT_JUPITER}") - testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:${Library.JUNIT_JUPITER}") + testRuntimeOnly("org.slf4j:slf4j-simple:${Versions.SLF4J}") } |
