diff options
| author | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2021-02-23 12:05:59 +0100 |
|---|---|---|
| committer | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2021-02-23 12:12:36 +0100 |
| commit | 90de768b8bfb3acc222f508d2e602ef3b7f1ff91 (patch) | |
| tree | 577a96ec45e245d1a1184a5158495c2289ae004c /simulator/opendc-workflows | |
| parent | 0b092b352dc29ce69f6f126eb7857a1243a6ef62 (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-workflows')
| -rw-r--r-- | simulator/opendc-workflows/build.gradle.kts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/simulator/opendc-workflows/build.gradle.kts b/simulator/opendc-workflows/build.gradle.kts index dbd135a8..74a0fbc3 100644 --- a/simulator/opendc-workflows/build.gradle.kts +++ b/simulator/opendc-workflows/build.gradle.kts @@ -33,7 +33,7 @@ dependencies { api(project(":opendc-compute:opendc-compute-core")) api(project(":opendc-trace:opendc-trace-core")) implementation(project(":opendc-utils")) - implementation("io.github.microutils:kotlin-logging:1.7.9") + implementation("io.github.microutils:kotlin-logging:${versions.kotlinLogging}") testImplementation(project(":opendc-simulator:opendc-simulator-core")) testImplementation(project(":opendc-compute:opendc-compute-simulator")) @@ -42,5 +42,5 @@ dependencies { exclude("org.jetbrains.kotlin", module = "kotlin-reflect") } testImplementation(kotlin("reflect")) - testRuntimeOnly("org.slf4j:slf4j-simple:${Versions.SLF4J}") + testRuntimeOnly("org.slf4j:slf4j-simple:${versions.kotlinxCoroutines}") } |
