Skip to content

Commit 1cd0e5b

Browse files
chore: update to use bom (#121)
1 parent 4f3975c commit 1cd0e5b

File tree

20 files changed

+714
-112
lines changed

20 files changed

+714
-112
lines changed

.github/workflows/update-locks.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Update Locks
2+
on:
3+
workflow_dispatch:
4+
schedule:
5+
- cron: '18 22 * * 1'
6+
jobs:
7+
update-versions:
8+
runs-on: ubuntu-24.04
9+
steps:
10+
- name: Check out code
11+
uses: actions/checkout@v4
12+
with:
13+
fetch-depth: 0
14+
- name: Calculate simple repository name
15+
id: repo-basename
16+
shell: bash
17+
run: |
18+
echo "value=`basename ${{ github.repository }}`" >> $GITHUB_OUTPUT
19+
- name: Get Token from Github App
20+
uses: tibdex/github-app-token@v2
21+
id: generate-token
22+
with:
23+
app_id: ${{ secrets.GH_CI_APP_ID }}
24+
private_key: ${{ secrets.GH_CI_APP_PRIVATE_KEY }}
25+
repositories: >-
26+
[${{ toJson(steps.repo-basename.outputs.value) }}]
27+
- name: Update locks if needed
28+
uses: hypertrace/github-actions/raise-lock-pr@main
29+
with:
30+
token: ${{ steps.generate-token.outputs.token }}

build.gradle.kts

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,24 @@ import org.hypertrace.gradle.publishing.HypertracePublishExtension
22
import org.hypertrace.gradle.publishing.License
33

44
plugins {
5-
id("org.hypertrace.repository-plugin") version "0.5.0"
6-
id("org.hypertrace.ci-utils-plugin") version "0.4.0"
7-
id("org.hypertrace.publish-plugin") version "1.1.1" apply false
8-
id("org.hypertrace.jacoco-report-plugin") version "0.3.0" apply false
9-
id("org.hypertrace.code-style-plugin") version "2.1.2" apply false
10-
id("org.hypertrace.java-convention") version "0.4.0"
11-
id("org.owasp.dependencycheck") version "12.1.0"
5+
alias(commonLibs.plugins.hypertrace.repository)
6+
alias(commonLibs.plugins.hypertrace.ciutils)
7+
alias(commonLibs.plugins.hypertrace.codestyle) apply false
8+
alias(commonLibs.plugins.hypertrace.publish) apply false
9+
alias(localLibs.plugins.hypertrace.java.convention)
10+
alias(commonLibs.plugins.owasp.dependencycheck)
1211
}
1312

1413
subprojects {
1514
group = "org.hypertrace.core.serviceframework"
16-
pluginManager.withPlugin("org.hypertrace.publish-plugin") {
15+
pluginManager.withPlugin(rootProject.commonLibs.plugins.hypertrace.publish.get().pluginId) {
1716
configure<HypertracePublishExtension> {
1817
license.set(License.APACHE_2_0)
1918
}
2019
}
2120
pluginManager.withPlugin("java") {
2221
configure<JavaPluginExtension> {
23-
apply(plugin = "org.hypertrace.code-style-plugin")
22+
apply(plugin = rootProject.commonLibs.plugins.hypertrace.codestyle.get().pluginId)
2423
}
2524
}
2625
}

docstore-metrics/build.gradle.kts

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
11
plugins {
22
`java-library`
33
jacoco
4-
id("org.hypertrace.publish-plugin")
5-
id("org.hypertrace.jacoco-report-plugin")
4+
alias(commonLibs.plugins.hypertrace.publish)
5+
alias(commonLibs.plugins.hypertrace.jacoco)
66
}
77

88
dependencies {
9-
annotationProcessor(libs.lombok)
10-
compileOnly(libs.lombok)
9+
annotationProcessor(commonLibs.lombok)
10+
compileOnly(commonLibs.lombok)
1111

12-
api(libs.hypertrace.documentStore)
13-
api(project(":service-framework-spi"))
14-
api(platform("com.fasterxml.jackson:jackson-bom:2.16.0"))
15-
implementation(project(":platform-metrics"))
16-
implementation("com.google.guava:guava:32.0.1-jre")
12+
api(commonLibs.hypertrace.documentstore)
13+
api(projects.serviceFrameworkSpi)
14+
implementation(projects.platformMetrics)
15+
implementation(commonLibs.guava)
1716
}

docstore-metrics/gradle.lockfile

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
# This is a Gradle generated file for dependency locking.
2+
# Manual edits can break the build and are not advised.
3+
# This file is expected to be part of source control.
4+
com.fasterxml.jackson.core:jackson-annotations:2.16.1=runtimeClasspath,testRuntimeClasspath
5+
com.fasterxml.jackson.core:jackson-core:2.16.1=runtimeClasspath,testRuntimeClasspath
6+
com.fasterxml.jackson.core:jackson-databind:2.16.1=runtimeClasspath,testRuntimeClasspath
7+
com.fasterxml.jackson:jackson-bom:2.16.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
8+
com.google.code.findbugs:jsr305:3.0.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
9+
com.google.errorprone:error_prone_annotations:2.18.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
10+
com.google.guava:failureaccess:1.0.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
11+
com.google.guava:guava-parent:32.1.2-jre=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
12+
com.google.guava:guava:32.1.2-jre=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
13+
com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
14+
com.google.j2objc:j2objc-annotations:2.8=compileClasspath,testCompileClasspath
15+
com.typesafe:config:1.4.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
16+
commons-logging:commons-logging:1.2=runtimeClasspath,testRuntimeClasspath
17+
io.dropwizard.metrics:metrics-core:4.2.25=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
18+
io.dropwizard.metrics:metrics-jakarta-servlet:4.2.25=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
19+
io.dropwizard.metrics:metrics-jvm:4.2.25=runtimeClasspath,testRuntimeClasspath
20+
io.github.mweirauch:micrometer-jvm-extras:0.2.2=runtimeClasspath,testRuntimeClasspath
21+
io.grpc:grpc-bom:1.68.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
22+
io.micrometer:micrometer-commons:1.14.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
23+
io.micrometer:micrometer-core:1.14.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
24+
io.micrometer:micrometer-observation:1.14.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
25+
io.micrometer:micrometer-registry-prometheus-simpleclient:1.14.4=runtimeClasspath,testRuntimeClasspath
26+
io.netty:netty-bom:4.1.118.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
27+
io.prometheus:simpleclient:0.16.0=runtimeClasspath,testRuntimeClasspath
28+
io.prometheus:simpleclient_common:0.16.0=runtimeClasspath,testRuntimeClasspath
29+
io.prometheus:simpleclient_dropwizard:0.16.0=runtimeClasspath,testRuntimeClasspath
30+
io.prometheus:simpleclient_pushgateway:0.16.0=runtimeClasspath,testRuntimeClasspath
31+
io.prometheus:simpleclient_servlet_common:0.16.0=runtimeClasspath,testRuntimeClasspath
32+
io.prometheus:simpleclient_servlet_jakarta:0.16.0=runtimeClasspath,testRuntimeClasspath
33+
io.prometheus:simpleclient_tracer_common:0.16.0=runtimeClasspath,testRuntimeClasspath
34+
io.prometheus:simpleclient_tracer_otel:0.16.0=runtimeClasspath,testRuntimeClasspath
35+
io.prometheus:simpleclient_tracer_otel_agent:0.16.0=runtimeClasspath,testRuntimeClasspath
36+
jakarta.servlet:jakarta.servlet-api:6.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
37+
net.jodah:failsafe:2.4.4=runtimeClasspath,testRuntimeClasspath
38+
org.apache.commons:commons-collections4:4.4=runtimeClasspath,testRuntimeClasspath
39+
org.apache.commons:commons-dbcp2:2.9.0=runtimeClasspath,testRuntimeClasspath
40+
org.apache.commons:commons-lang3:3.18.0=runtimeClasspath,testRuntimeClasspath
41+
org.apache.commons:commons-pool2:2.10.0=runtimeClasspath,testRuntimeClasspath
42+
org.checkerframework:checker-qual:3.33.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
43+
org.eclipse.jetty.toolchain:jetty-jakarta-servlet-api:5.0.2=runtimeClasspath,testRuntimeClasspath
44+
org.eclipse.jetty:jetty-bom:11.0.24=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
45+
org.eclipse.jetty:jetty-http:11.0.24=runtimeClasspath,testRuntimeClasspath
46+
org.eclipse.jetty:jetty-io:11.0.24=runtimeClasspath,testRuntimeClasspath
47+
org.eclipse.jetty:jetty-security:11.0.24=runtimeClasspath,testRuntimeClasspath
48+
org.eclipse.jetty:jetty-server:11.0.24=runtimeClasspath,testRuntimeClasspath
49+
org.eclipse.jetty:jetty-servlet:11.0.24=runtimeClasspath,testRuntimeClasspath
50+
org.eclipse.jetty:jetty-util:11.0.24=runtimeClasspath,testRuntimeClasspath
51+
org.hdrhistogram:HdrHistogram:2.2.2=runtimeClasspath,testRuntimeClasspath
52+
org.hypertrace.bom:hypertrace-bom:0.3.51=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
53+
org.hypertrace.core.documentstore:document-store:0.8.6=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
54+
org.hypertrace.core.kafkastreams.framework:kafka-bom:0.6.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
55+
org.latencyutils:LatencyUtils:2.0.3=runtimeClasspath,testRuntimeClasspath
56+
org.mongodb:bson-record-codec:5.2.0=runtimeClasspath,testRuntimeClasspath
57+
org.mongodb:bson:5.2.0=runtimeClasspath,testRuntimeClasspath
58+
org.mongodb:mongodb-driver-core:5.2.0=runtimeClasspath,testRuntimeClasspath
59+
org.mongodb:mongodb-driver-sync:5.2.0=runtimeClasspath,testRuntimeClasspath
60+
org.postgresql:postgresql:42.5.5=runtimeClasspath,testRuntimeClasspath
61+
org.projectlombok:lombok:1.18.30=annotationProcessor,compileClasspath
62+
org.slf4j:slf4j-api:2.0.7=compileClasspath,testCompileClasspath
63+
org.slf4j:slf4j-api:2.0.9=runtimeClasspath,testRuntimeClasspath
64+
empty=

gradle/libs.versions.toml

Lines changed: 31 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,32 @@
1+
[versions]
2+
hypertrace-grpcutils = "0.13.14"
3+
jetty = "11.0.24"
4+
guice = "7.0.0"
5+
dropwizard-metrics = "4.2.25"
6+
micrometer = "1.14.4"
7+
prometheus-simpleclient = "0.16.0"
8+
caffeine = "3.1.8"
9+
110
[libraries]
2-
lombok = { module = "org.projectlombok:lombok", version = "1.18.38" }
3-
hypertrace-documentStore = { module = "org.hypertrace.core.documentstore:document-store", version = "0.9.5" }
11+
awaitility = { module = "org.awaitility:awaitility", version = "4.0.3" }
12+
hypertrace-grpcutils-server = { module = "org.hypertrace.core.grpcutils:grpc-server-utils", version.ref = "hypertrace-grpcutils" }
13+
grpc-services = { module = "io.grpc:grpc-services" }
14+
jakarta-servlet-api = { module = "jakarta.servlet:jakarta.servlet-api", version = "6.0.0" }
15+
dropwizard-metrics-jakarta-servlet = { module = "io.dropwizard.metrics:metrics-jakarta-servlet", version.ref = "dropwizard-metrics" }
16+
dropwizard-metrics-jakarta-servlets = { module = "io.dropwizard.metrics:metrics-jakarta-servlets", version.ref = "dropwizard-metrics" }
17+
dropwizard-metrics-jvm = { module = "io.dropwizard.metrics:metrics-jvm", version.ref = "dropwizard-metrics" }
18+
micrometer-core = { module = "io.micrometer:micrometer-core", version.ref = "micrometer" }
19+
micrometer-registry-prometheus-simpleclient = { module = "io.micrometer:micrometer-registry-prometheus-simpleclient", version.ref = "micrometer" }
20+
micrometer-jvm-extras = { module = "io.github.mweirauch:micrometer-jvm-extras", version = "0.2.2" }
21+
prometheus-simpleclient-dropwizard = { module = "io.prometheus:simpleclient_dropwizard", version.ref = "prometheus-simpleclient" }
22+
prometheus-simpleclient-servlet-jakarta = { module = "io.prometheus:simpleclient_servlet_jakarta", version.ref = "prometheus-simpleclient" }
23+
prometheus-simpleclient-pushgateway = { module = "io.prometheus:simpleclient_pushgateway", version.ref = "prometheus-simpleclient" }
24+
jetty-servlet = { module = "org.eclipse.jetty:jetty-servlet", version.ref = "jetty" }
25+
jetty-server = { module = "org.eclipse.jetty:jetty-server", version.ref = "jetty" }
26+
jetty-servlets = { module = "org.eclipse.jetty:jetty-servlets", version.ref = "jetty" }
27+
caffeine = { module = "com.github.ben-manes.caffeine:caffeine", version.ref = "caffeine" }
28+
guice-servlet = { module = "com.google.inject.extensions:guice-servlet", version.ref = "guice" }
29+
apache-httpcomponents-httpclient = { module = "org.apache.httpcomponents:httpclient", version = "4.5.13" }
30+
31+
[plugins]
32+
hypertrace-java-convention = { id = "org.hypertrace.java-convention", version = "0.4.0" }
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
plugins {
22
`java-library`
33
jacoco
4-
id("org.hypertrace.publish-plugin")
5-
id("org.hypertrace.jacoco-report-plugin")
4+
alias(commonLibs.plugins.hypertrace.publish)
5+
alias(commonLibs.plugins.hypertrace.jacoco)
66
}
77

88
tasks.test {
99
useJUnitPlatform()
1010
}
1111

1212
dependencies {
13-
implementation(project(":platform-service-framework"))
13+
implementation(projects.platformServiceFramework)
1414

1515
// Configuration
16-
implementation("com.typesafe:config:1.4.2")
16+
implementation(commonLibs.typesafe.config)
1717
// Logging
18-
implementation("org.slf4j:slf4j-api:1.7.36")
19-
implementation("org.awaitility:awaitility:4.0.3")
18+
implementation(commonLibs.slf4j2.api)
19+
implementation(localLibs.awaitility)
2020
}
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
# This is a Gradle generated file for dependency locking.
2+
# Manual edits can break the build and are not advised.
3+
# This file is expected to be part of source control.
4+
com.fasterxml.jackson.core:jackson-annotations:2.16.1=runtimeClasspath,testRuntimeClasspath
5+
com.fasterxml.jackson.core:jackson-core:2.16.1=runtimeClasspath,testRuntimeClasspath
6+
com.fasterxml.jackson.core:jackson-databind:2.16.1=runtimeClasspath,testRuntimeClasspath
7+
com.fasterxml.jackson:jackson-bom:2.16.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
8+
com.google.code.findbugs:jsr305:3.0.2=runtimeClasspath,testRuntimeClasspath
9+
com.google.errorprone:error_prone_annotations:2.18.0=runtimeClasspath,testRuntimeClasspath
10+
com.google.guava:failureaccess:1.0.1=runtimeClasspath,testRuntimeClasspath
11+
com.google.guava:guava-parent:32.1.2-jre=runtimeClasspath,testRuntimeClasspath
12+
com.google.guava:guava:32.1.2-jre=runtimeClasspath,testRuntimeClasspath
13+
com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=runtimeClasspath,testRuntimeClasspath
14+
com.helger:profiler:1.1.1=runtimeClasspath,testRuntimeClasspath
15+
com.typesafe:config:1.4.2=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
16+
commons-codec:commons-codec:1.11=runtimeClasspath,testRuntimeClasspath
17+
commons-logging:commons-logging:1.2=runtimeClasspath,testRuntimeClasspath
18+
io.dropwizard.metrics:metrics-core:4.2.25=runtimeClasspath,testRuntimeClasspath
19+
io.dropwizard.metrics:metrics-healthchecks:4.2.25=runtimeClasspath,testRuntimeClasspath
20+
io.dropwizard.metrics:metrics-jakarta-servlet:4.2.25=runtimeClasspath,testRuntimeClasspath
21+
io.dropwizard.metrics:metrics-jakarta-servlets:4.2.25=runtimeClasspath,testRuntimeClasspath
22+
io.dropwizard.metrics:metrics-json:4.2.25=runtimeClasspath,testRuntimeClasspath
23+
io.dropwizard.metrics:metrics-jvm:4.2.25=runtimeClasspath,testRuntimeClasspath
24+
io.github.mweirauch:micrometer-jvm-extras:0.2.2=runtimeClasspath,testRuntimeClasspath
25+
io.grpc:grpc-bom:1.68.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
26+
io.micrometer:micrometer-commons:1.14.4=runtimeClasspath,testRuntimeClasspath
27+
io.micrometer:micrometer-core:1.14.4=runtimeClasspath,testRuntimeClasspath
28+
io.micrometer:micrometer-observation:1.14.4=runtimeClasspath,testRuntimeClasspath
29+
io.micrometer:micrometer-registry-prometheus-simpleclient:1.14.4=runtimeClasspath,testRuntimeClasspath
30+
io.netty:netty-bom:4.1.118.Final=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
31+
io.prometheus:simpleclient:0.16.0=runtimeClasspath,testRuntimeClasspath
32+
io.prometheus:simpleclient_common:0.16.0=runtimeClasspath,testRuntimeClasspath
33+
io.prometheus:simpleclient_dropwizard:0.16.0=runtimeClasspath,testRuntimeClasspath
34+
io.prometheus:simpleclient_pushgateway:0.16.0=runtimeClasspath,testRuntimeClasspath
35+
io.prometheus:simpleclient_servlet_common:0.16.0=runtimeClasspath,testRuntimeClasspath
36+
io.prometheus:simpleclient_servlet_jakarta:0.16.0=runtimeClasspath,testRuntimeClasspath
37+
io.prometheus:simpleclient_tracer_common:0.16.0=runtimeClasspath,testRuntimeClasspath
38+
io.prometheus:simpleclient_tracer_otel:0.16.0=runtimeClasspath,testRuntimeClasspath
39+
io.prometheus:simpleclient_tracer_otel_agent:0.16.0=runtimeClasspath,testRuntimeClasspath
40+
jakarta.servlet:jakarta.servlet-api:6.0.0=runtimeClasspath,testRuntimeClasspath
41+
org.apache.httpcomponents:httpclient:4.5.13=runtimeClasspath,testRuntimeClasspath
42+
org.apache.httpcomponents:httpcore:4.4.13=runtimeClasspath,testRuntimeClasspath
43+
org.awaitility:awaitility:4.0.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
44+
org.checkerframework:checker-qual:3.33.0=runtimeClasspath,testRuntimeClasspath
45+
org.eclipse.jetty.toolchain:jetty-jakarta-servlet-api:5.0.2=runtimeClasspath,testRuntimeClasspath
46+
org.eclipse.jetty:jetty-bom:11.0.24=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
47+
org.eclipse.jetty:jetty-http:11.0.24=runtimeClasspath,testRuntimeClasspath
48+
org.eclipse.jetty:jetty-io:11.0.24=runtimeClasspath,testRuntimeClasspath
49+
org.eclipse.jetty:jetty-security:11.0.24=runtimeClasspath,testRuntimeClasspath
50+
org.eclipse.jetty:jetty-server:11.0.24=runtimeClasspath,testRuntimeClasspath
51+
org.eclipse.jetty:jetty-servlet:11.0.24=runtimeClasspath,testRuntimeClasspath
52+
org.eclipse.jetty:jetty-util:11.0.24=runtimeClasspath,testRuntimeClasspath
53+
org.hamcrest:hamcrest:2.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
54+
org.hdrhistogram:HdrHistogram:2.2.2=runtimeClasspath,testRuntimeClasspath
55+
org.hypertrace.bom:hypertrace-bom:0.3.51=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
56+
org.hypertrace.core.kafkastreams.framework:kafka-bom:0.6.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
57+
org.latencyutils:LatencyUtils:2.0.3=runtimeClasspath,testRuntimeClasspath
58+
org.slf4j:slf4j-api:2.0.7=compileClasspath,testCompileClasspath
59+
org.slf4j:slf4j-api:2.0.9=runtimeClasspath,testRuntimeClasspath
60+
empty=annotationProcessor
Lines changed: 16 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,25 @@
11
plugins {
22
`java-library`
33
jacoco
4-
id("org.hypertrace.publish-plugin")
5-
id("org.hypertrace.jacoco-report-plugin")
4+
alias(commonLibs.plugins.hypertrace.publish)
5+
alias(commonLibs.plugins.hypertrace.jacoco)
66
}
77

88
dependencies {
9-
api(project(":platform-service-framework"))
10-
api(platform("io.grpc:grpc-bom:1.68.3"))
11-
api("io.grpc:grpc-api")
12-
api("io.grpc:grpc-services")
13-
api("org.hypertrace.core.grpcutils:grpc-client-utils:0.13.14")
14-
api("com.typesafe:config:1.4.2")
15-
api("com.google.protobuf:protobuf-java:3.25.5")
16-
api(project(":service-framework-spi"))
9+
api(projects.platformServiceFramework)
10+
api(commonLibs.grpc.api)
11+
api(localLibs.grpc.services)
12+
api(commonLibs.hypertrace.grpcutils.client)
13+
api(commonLibs.typesafe.config)
14+
api(commonLibs.protobuf.java)
15+
api(projects.serviceFrameworkSpi)
1716

18-
annotationProcessor(libs.lombok)
19-
compileOnly(libs.lombok)
17+
annotationProcessor(commonLibs.lombok)
18+
compileOnly(commonLibs.lombok)
2019

21-
implementation(project(":platform-metrics"))
22-
implementation("io.grpc:grpc-inprocess")
23-
implementation("io.grpc:grpc-netty")
24-
implementation("org.slf4j:slf4j-api:1.7.36")
25-
implementation("org.hypertrace.core.grpcutils:grpc-server-utils:0.13.14")
20+
implementation(projects.platformMetrics)
21+
implementation(commonLibs.grpc.inprocess)
22+
implementation(commonLibs.grpc.netty)
23+
implementation(commonLibs.slf4j2.api)
24+
implementation(localLibs.hypertrace.grpcutils.server)
2625
}

0 commit comments

Comments
 (0)