Skip to content

Commit 25965d2

Browse files
authored
Remove version numbers from some already managed dependencies (#15194)
1 parent 32cf452 commit 25965d2

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

instrumentation-docs/build.gradle.kts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,10 @@ otelJava {
99

1010
dependencies {
1111
implementation("org.yaml:snakeyaml:2.5")
12-
implementation("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.20.1")
12+
implementation("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml")
1313
implementation("io.opentelemetry:opentelemetry-sdk-common")
1414

15-
testImplementation(enforcedPlatform("org.junit:junit-bom:5.14.0"))
16-
testImplementation("org.assertj:assertj-core:3.27.6")
15+
testImplementation("org.assertj:assertj-core")
1716
testImplementation("org.junit.jupiter:junit-jupiter-api")
1817
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
1918
}

instrumentation/aws-sdk/aws-sdk-2.2/testing/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ dependencies {
2929

3030
// used to record LLM responses in bedrock tests
3131
implementation("com.github.tomakehurst:wiremock-jre8:2.35.2")
32-
implementation("com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.18.2")
33-
implementation("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.18.2")
32+
implementation("com.fasterxml.jackson.datatype:jackson-datatype-jsr310")
33+
implementation("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml")
3434

3535
implementation("io.opentelemetry:opentelemetry-api")
3636
}

testing/dependencies-shaded-for-testing/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ dependencies {
1111
implementation("io.opentelemetry.proto:opentelemetry-proto")
1212
implementation("com.google.protobuf:protobuf-java-util:4.33.0")
1313
implementation("com.github.tomakehurst:wiremock-jre8:2.35.2")
14-
implementation("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.20.1")
14+
implementation("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml")
1515
// we'll replace caffeine shaded in armeria with a later version that doesn't use Unsafe. Caffeine
1616
// 3+ doesn't work with Java 8, but that is fine since --sun-misc-unsafe-memory-access=deny
1717
// requires Java 23.

0 commit comments

Comments
 (0)