Skip to content

Commit

Permalink
Merge branch '1.4.x'
Browse files Browse the repository at this point in the history
  • Loading branch information
jonatan-ivanov committed Feb 21, 2025
2 parents c8604aa + c538456 commit f7b2e2d
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 7 deletions.
3 changes: 2 additions & 1 deletion docs/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ dependencies {
testImplementation project(':micrometer-tracing-test')
testImplementation project(':micrometer-tracing-integration-test')
testImplementation libs.aspectjweaver
testImplementation 'org.junit.jupiter:junit-jupiter'
testImplementation libs.junitJupiter
testRuntimeOnly libs.junitPlatformLauncher
testImplementation libs.mockitoCore
testImplementation libs.assertj
testImplementation libs.springContext
Expand Down
2 changes: 2 additions & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ jmh = { module = "org.openjdk.jmh:jmh-core", version.ref = "jmh" }
jmhGeneratorAnnProcess = { module = "org.openjdk.jmh:jmh-generator-annprocess", version.ref = "jmh" }
jsr305 = { module = "com.google.code.findbugs:jsr305", version.ref = "jsr305" }
junitBom = { module = "org.junit:junit-bom", version.ref = "junit" }
junitJupiter = { module = "org.junit.jupiter:junit-jupiter" }
junitPlatformLauncher = { module = "org.junit.platform:junit-platform-launcher" }
log4j = { module = "org.apache.logging.log4j:log4j-core", version.ref = "log4j" }
logback = { module = "ch.qos.logback:logback-classic", version.ref = "logback" }
micrometerContextPropagation = { module = "io.micrometer:context-propagation", version.ref = "micrometerContextPropagation" }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ dependencies {
testImplementation project(':micrometer-tracing-test')
testImplementation 'io.micrometer:micrometer-core'
testImplementation 'io.micrometer:micrometer-observation-test'
testImplementation 'org.junit.jupiter:junit-jupiter'
testImplementation libs.junitJupiter
testRuntimeOnly libs.junitPlatformLauncher
testImplementation libs.assertj
testImplementation libs.awaitility
testImplementation 'io.zipkin.brave:brave-instrumentation-http-tests'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ dependencies {
testImplementation project(':micrometer-tracing-test')
testImplementation 'io.micrometer:micrometer-core'
testImplementation 'io.micrometer:micrometer-observation-test'
testImplementation 'org.junit.jupiter:junit-jupiter'
testImplementation libs.junitJupiter
testRuntimeOnly libs.junitPlatformLauncher
testImplementation libs.assertj
testImplementation libs.awaitility
testImplementation libs.mockitoCore
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ dependencies {

// Tests
testImplementation project(':micrometer-tracing-test')
testImplementation 'org.junit.jupiter:junit-jupiter'
testImplementation libs.junitJupiter
testRuntimeOnly libs.junitPlatformLauncher
testImplementation libs.assertj
testImplementation libs.awaitility
testImplementation libs.logback
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,11 @@ dependencies {
api libs.wavefrontReporter

// Tests
api 'org.junit.jupiter:junit-jupiter'
api libs.junitJupiter
api libs.assertj

// Tests for tests
testRuntimeOnly libs.junitPlatformLauncher
testImplementation libs.springContext
testImplementation libs.mockitoCore
testImplementation libs.wiremock
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ dependencies {

// Tests for tests
testImplementation libs.logback
testImplementation 'org.junit.jupiter:junit-jupiter'
testImplementation libs.junitJupiter
testRuntimeOnly libs.junitPlatformLauncher
testImplementation 'org.mockito:mockito-core'

// aspects
Expand Down
3 changes: 2 additions & 1 deletion micrometer-tracing/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ dependencies {
optionalApi libs.logback
optionalApi libs.log4j

testImplementation 'org.junit.jupiter:junit-jupiter'
testImplementation libs.junitJupiter
testRuntimeOnly libs.junitPlatformLauncher
testImplementation libs.assertj
testImplementation libs.mockitoCore
testImplementation libs.mockitoJunit
Expand Down

0 comments on commit f7b2e2d

Please sign in to comment.