diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index ae58849..734d793 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -51,6 +51,7 @@ hypertrace-grpcutils-rx-server = { module = "org.hypertrace.core.grpcutils:grpc- hypertrace-framework-grpc = { module = "org.hypertrace.core.serviceframework:platform-grpc-service-framework", version.ref = "hypertrace-framework" } hypertrace-framework-http = { module = "org.hypertrace.core.serviceframework:platform-http-service-framework", version.ref = "hypertrace-framework" } hypertrace-framework-spi = { module = "org.hypertrace.core.serviceframework:service-framework-spi", version.ref = "hypertrace-framework" } +hypertrace-framework-metrics = { module = "org.hypertrace.core.serviceframework:platform-metrics", version.ref = "hypertrace-framework" } hypertrace-integrationtest-framework = { module = "org.hypertrace.core.serviceframework:integrationtest-service-framework", version.ref = "hypertrace-framework" } hypertrace-framework-documentstore-metrics = { module = "org.hypertrace.core.serviceframework:docstore-metrics", version.ref = "hypertrace-framework" } hypertrace-documentstore = { module = "org.hypertrace.core.documentstore:document-store", version = "0.7.49" } diff --git a/hypertrace-bom/build.gradle.kts b/hypertrace-bom/build.gradle.kts index 8ccccb2..0b84fb2 100644 --- a/hypertrace-bom/build.gradle.kts +++ b/hypertrace-bom/build.gradle.kts @@ -19,6 +19,7 @@ dependencies { api(libs.hypertrace.framework.grpc) api(libs.hypertrace.framework.http) api(libs.hypertrace.framework.spi) + api(libs.hypertrace.framework.metrics) api(libs.hypertrace.integrationtest.framework) api(libs.hypertrace.documentstore) api(libs.hypertrace.framework.documentstore.metrics)