summaryrefslogtreecommitdiff
path: root/simulator/opendc-simulator
diff options
context:
space:
mode:
authorFabian Mastenbroek <mail.fabianm@gmail.com>2021-02-23 12:05:59 +0100
committerFabian Mastenbroek <mail.fabianm@gmail.com>2021-02-23 12:12:36 +0100
commit90de768b8bfb3acc222f508d2e602ef3b7f1ff91 (patch)
tree577a96ec45e245d1a1184a5158495c2289ae004c /simulator/opendc-simulator
parent0b092b352dc29ce69f6f126eb7857a1243a6ef62 (diff)
Move dependency versions to gradle.properties
This change moves the version of the dependencies from buildSrc to gradle.properties to prevent recompilation when changing dependency versions.
Diffstat (limited to 'simulator/opendc-simulator')
-rw-r--r--simulator/opendc-simulator/opendc-simulator-core/build.gradle.kts2
-rw-r--r--simulator/opendc-simulator/opendc-simulator-failures/build.gradle.kts2
2 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 79d3463f..db681ef0 100644
--- a/simulator/opendc-simulator/opendc-simulator-core/build.gradle.kts
+++ b/simulator/opendc-simulator/opendc-simulator-core/build.gradle.kts
@@ -28,5 +28,5 @@ plugins {
}
dependencies {
- api("org.jetbrains.kotlinx:kotlinx-coroutines-test:${Versions.KOTLINX_COROUTINES}")
+ api("org.jetbrains.kotlinx:kotlinx-coroutines-test:${versions.kotlinxCoroutines}")
}
diff --git a/simulator/opendc-simulator/opendc-simulator-failures/build.gradle.kts b/simulator/opendc-simulator/opendc-simulator-failures/build.gradle.kts
index d2193c0d..76f77a90 100644
--- a/simulator/opendc-simulator/opendc-simulator-failures/build.gradle.kts
+++ b/simulator/opendc-simulator/opendc-simulator-failures/build.gradle.kts
@@ -27,5 +27,5 @@ plugins {
}
dependencies {
- api("org.jetbrains.kotlinx:kotlinx-coroutines-core:${Versions.KOTLINX_COROUTINES}")
+ api("org.jetbrains.kotlinx:kotlinx-coroutines-core:${versions.kotlinxCoroutines}")
}