summaryrefslogtreecommitdiff
path: root/simulator/opendc-simulator/opendc-simulator-core
diff options
context:
space:
mode:
authorFabian Mastenbroek <mail.fabianm@gmail.com>2021-02-23 11:46:06 +0100
committerFabian Mastenbroek <mail.fabianm@gmail.com>2021-02-23 11:46:06 +0100
commit0b092b352dc29ce69f6f126eb7857a1243a6ef62 (patch)
tree44047aba0874b80ffd406cfc6c7776bde0eaaf90 /simulator/opendc-simulator/opendc-simulator-core
parentbde79549149eca269c033302729ba06043efb29c (diff)
Extract testing conventions from Kotlin conventions
This change extracts the configuration for test from the Kotlin library conventions.
Diffstat (limited to 'simulator/opendc-simulator/opendc-simulator-core')
-rw-r--r--simulator/opendc-simulator/opendc-simulator-core/build.gradle.kts4
1 files changed, 2 insertions, 2 deletions
diff --git a/simulator/opendc-simulator/opendc-simulator-core/build.gradle.kts b/simulator/opendc-simulator/opendc-simulator-core/build.gradle.kts
index a740dcf3..79d3463f 100644
--- a/simulator/opendc-simulator/opendc-simulator-core/build.gradle.kts
+++ b/simulator/opendc-simulator/opendc-simulator-core/build.gradle.kts
@@ -24,9 +24,9 @@ description = "Simulation-specific code for use in OpenDC"
/* Build configuration */
plugins {
- `kotlin-library-convention`
+ `kotlin-library-conventions`
}
dependencies {
- api("org.jetbrains.kotlinx:kotlinx-coroutines-test:${Library.KOTLINX_COROUTINES}")
+ api("org.jetbrains.kotlinx:kotlinx-coroutines-test:${Versions.KOTLINX_COROUTINES}")
}