summaryrefslogtreecommitdiff
path: root/opendc-experiments
diff options
context:
space:
mode:
authorFabian Mastenbroek <mail.fabianm@gmail.com>2022-02-18 14:08:18 +0100
committerFabian Mastenbroek <mail.fabianm@gmail.com>2022-02-18 14:46:29 +0100
commit52d35cd82905612f0ef9f7b7d88611300fb48ebe (patch)
treead2464b4ec2b8d399cbaa9ea68364ad1e04418e2 /opendc-experiments
parent028960fbf584c903156c713447194df56ec5059e (diff)
refactor(utils): Rename utils module to common module
This change adds a new module, opendc-common, that contains functionality that is shared across OpenDC's modules. We move the existing utils module into this new module.
Diffstat (limited to 'opendc-experiments')
-rw-r--r--opendc-experiments/opendc-experiments-tf20/build.gradle.kts4
1 files changed, 2 insertions, 2 deletions
diff --git a/opendc-experiments/opendc-experiments-tf20/build.gradle.kts b/opendc-experiments/opendc-experiments-tf20/build.gradle.kts
index 882c4894..75381e1f 100644
--- a/opendc-experiments/opendc-experiments-tf20/build.gradle.kts
+++ b/opendc-experiments/opendc-experiments-tf20/build.gradle.kts
@@ -34,11 +34,11 @@ dependencies {
implementation(projects.opendcSimulator.opendcSimulatorCore)
implementation(projects.opendcSimulator.opendcSimulatorCompute)
implementation(projects.opendcTelemetry.opendcTelemetrySdk)
- implementation(projects.opendcUtils)
+ implementation(projects.opendcCommon)
implementation(libs.kotlin.logging)
implementation(libs.jackson.module.kotlin) {
exclude(group = "org.jetbrains.kotlin", module = "kotlin-reflect")
}
- implementation("org.jetbrains.kotlin:kotlin-reflect:1.5.30")
+ implementation("org.jetbrains.kotlin:kotlin-reflect:1.6.10")
}