summaryrefslogtreecommitdiff
path: root/opendc-compute/opendc-compute-telemetry/build.gradle.kts
diff options
context:
space:
mode:
authorAlessio Leonardo Tomei <122273875+T0mexX@users.noreply.github.com>2024-08-22 16:45:22 +0200
committerGitHub <noreply@github.com>2024-08-22 16:45:22 +0200
commitf9ffdfb29a3f08ac11e739494e754c81ef4f5157 (patch)
treeabc65714427e2738e5278032230ba60a9b6f0a28 /opendc-compute/opendc-compute-telemetry/build.gradle.kts
parent4f98fb2bf8204f6af52cd6eeb3313d21c6ca95bc (diff)
Refactored exporters. Allows output column selection in scenario (#241) (#241)
Diffstat (limited to 'opendc-compute/opendc-compute-telemetry/build.gradle.kts')
-rw-r--r--opendc-compute/opendc-compute-telemetry/build.gradle.kts3
1 files changed, 3 insertions, 0 deletions
diff --git a/opendc-compute/opendc-compute-telemetry/build.gradle.kts b/opendc-compute/opendc-compute-telemetry/build.gradle.kts
index 10f7c610..e8692449 100644
--- a/opendc-compute/opendc-compute-telemetry/build.gradle.kts
+++ b/opendc-compute/opendc-compute-telemetry/build.gradle.kts
@@ -25,12 +25,15 @@ description = "OpenDC Compute Service implementation"
// Build configuration
plugins {
`kotlin-library-conventions`
+ kotlin("plugin.serialization") version "1.9.22"
}
dependencies {
api(projects.opendcCompute.opendcComputeApi)
+ api(projects.opendcTrace.opendcTraceParquet)
implementation(projects.opendcCommon)
implementation(libs.kotlin.logging)
+ implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.0")
implementation(project(mapOf("path" to ":opendc-trace:opendc-trace-parquet")))
implementation(project(mapOf("path" to ":opendc-compute:opendc-compute-service")))
implementation(project(mapOf("path" to ":opendc-compute:opendc-compute-carbon")))