Skip to content

Commit de22e45

Browse files
committed
core: bump dependencies
Also move the datadog related dependencies to the version library.
1 parent 940d62b commit de22e45

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

core/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@ dependencies {
7676
implementation libs.opentelemetry.instrumentation.annotations
7777

7878
// DataDog
79-
implementation 'io.opentracing:opentracing-util:0.33.0'
80-
implementation 'com.datadoghq:dd-trace-api:1.31.2'
79+
implementation libs.opentracing.util
80+
implementation libs.dd.trace.api
8181

8282
// Geographic computations
8383
implementation libs.geodesy

core/gradle/libs.versions.toml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@
1515

1616
[versions]
1717
kotlin = '1.9.23'
18-
ksp = '1.9.23-1.0.19'
19-
kotlinx-coroutines = '1.7.+'
18+
ksp = '1.9.23-1.0.20'
19+
kotlinx-coroutines = '1.8.+'
2020
logback = '1.5.+'
2121
moshi = '1.15.1'
2222
junit = '5.10.+'
2323
mockito = '5.2.+'
24-
otel = '1.34.1'
24+
otel = '1.36.0'
2525

2626
[libraries]
2727
# kotlin stuff
@@ -38,7 +38,7 @@ logback-core = { module = 'ch.qos.logback:logback-core', version.ref = 'logback'
3838
logback-classic = { module = 'ch.qos.logback:logback-classic', version.ref = 'logback' } # EPL 1.0 (incompatible) and LGPL 2.1 (compatible)
3939

4040
# java stuff
41-
guava = { module = 'com.google.guava:guava', version = '33.0.0-jre' } # Apache 2.0
41+
guava = { module = 'com.google.guava:guava', version = '33.1.0-jre' } # Apache 2.0
4242
jcommander = { module = 'com.beust:jcommander', version = '1.82' } # Apache 2.0
4343
hppc = { module = 'com.carrotsearch:hppc', version = '0.9.1' } # Apache 2.0
4444
moshi = { module = 'com.squareup.moshi:moshi', version.ref = 'moshi' } # Apache 2.0
@@ -50,7 +50,7 @@ okhttp = { module = 'com.squareup.okhttp3:okhttp', version = '4.12.0' } # Apache
5050
classgraph = { module = 'io.github.classgraph:classgraph', version = '4.8.+' } # MIT
5151
jmathplot = { module = 'com.github.yannrichet:JMathPlot', version = '1.0.1' } # BSD
5252
slf4j = { module = 'org.slf4j:slf4j-api', version = '2.0.+' } # MIT
53-
sentry = { module = 'io.sentry:sentry', version = '7.3.+' } # MIT
53+
sentry = { module = 'io.sentry:sentry', version = '7.6.+' } # MIT
5454
junit-jupiter-api = { module = 'org.junit.jupiter:junit-jupiter-api', version.ref = 'junit' } # EPL 2.0
5555
junit-jupiter-params = { module = 'org.junit.jupiter:junit-jupiter-params', version.ref = 'junit' } # EPL 2.0
5656
junit-jupiter-engine = { module = 'org.junit.jupiter:junit-jupiter-engine', version.ref = 'junit' } # EPL 2.0
@@ -66,6 +66,9 @@ geodesy = { module = 'org.gavaghan:geodesy', version = '1.1.+' } # Apache 2.0
6666
opentelemetry-api = { module = 'io.opentelemetry:opentelemetry-api', version.ref = 'otel' }
6767
opentelemetry-instrumentation-annotations = { module = 'io.opentelemetry.instrumentation:opentelemetry-instrumentation-annotations', version = '2.2.0' }
6868

69+
opentracing-util = { module = 'io.opentracing:opentracing-util', version = '0.33.0' }
70+
dd-trace-api = { module = 'com.datadoghq:dd-trace-api', version = '1.31.2' }
71+
6972
[plugins]
7073
# kotlin
7174
ksp = { id = 'com.google.devtools.ksp', version.ref = 'ksp' }

0 commit comments

Comments
 (0)