Skip to content

Commit

Permalink
Centralized a few dependencies which are likely to be shared
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasKunz committed Dec 7, 2023
1 parent 6101aa1 commit 23d9763
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ opentelemetryInstrumentationAlphaBom = { group = "io.opentelemetry.instrumentati
awsContribResources = { group = "io.opentelemetry.contrib", name = "opentelemetry-aws-resources", version.ref = "opentelemetryContribAlpha" }
contribResources = { group = "io.opentelemetry.contrib", name = "opentelemetry-resource-providers", version.ref = "opentelemetryContribAlpha" }

assertJ-core = "org.assertj:assertj-core:3.24.2"
awaitility = "org.awaitility:awaitility:4.2.0"
findbugs-jsr305 = "com.google.code.findbugs:jsr305:3.0.0"

[bundles]

[plugins]
Expand Down
8 changes: 4 additions & 4 deletions inferred-spans-otel/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@ plugins {

dependencies {
compileOnly("io.opentelemetry:opentelemetry-sdk")
compileOnly("com.google.code.findbugs:jsr305:3.0.0")
compileOnly(libs.findbugs.jsr305)
implementation("com.lmax:disruptor:3.4.4")
implementation("org.jctools:jctools-core:4.0.1")
implementation("com.blogspot.mydailyjava:weak-lock-free:0.18")

testCompileOnly("com.google.code.findbugs:jsr305:3.0.0")
testCompileOnly(libs.findbugs.jsr305)
testImplementation("io.opentelemetry:opentelemetry-sdk")
testImplementation("io.opentelemetry:opentelemetry-sdk-testing")
testImplementation("org.assertj:assertj-core:3.24.2")
testImplementation(libs.assertJ.core)
testImplementation(libs.awaitility)
testImplementation("org.kohsuke:github-api:1.133")
testImplementation("org.awaitility:awaitility:4.2.0")
testImplementation("org.apache.commons:commons-compress:1.21")
testImplementation("tools.profiler:async-profiler:1.8.3")
}
Expand Down

0 comments on commit 23d9763

Please sign in to comment.