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-runner-web | |
| 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-runner-web')
| -rw-r--r-- | simulator/opendc-runner-web/build.gradle.kts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/simulator/opendc-runner-web/build.gradle.kts b/simulator/opendc-runner-web/build.gradle.kts index de723bd9..0439ca0b 100644 --- a/simulator/opendc-runner-web/build.gradle.kts +++ b/simulator/opendc-runner-web/build.gradle.kts @@ -41,13 +41,13 @@ dependencies { implementation(project(":opendc-simulator:opendc-simulator-compute")) implementation("com.github.ajalt:clikt:2.8.0") - implementation("io.github.microutils:kotlin-logging:1.7.10") + implementation("io.github.microutils:kotlin-logging:${versions.kotlinLogging}") implementation("com.fasterxml.jackson.module:jackson-module-kotlin:2.9.8") { exclude("org.jetbrains.kotlin", module = "kotlin-reflect") } implementation("io.sentry:sentry-log4j2:3.1.1") implementation("org.mongodb:mongodb-driver-sync:4.0.5") - runtimeOnly("org.apache.logging.log4j:log4j-slf4j-impl:2.13.1") - runtimeOnly("org.apache.logging.log4j:log4j-1.2-api:2.13.1") + runtimeOnly("org.apache.logging.log4j:log4j-slf4j-impl:${versions.log4j}") + runtimeOnly("org.apache.logging.log4j:log4j-1.2-api:${versions.log4j}") } |
