Skip to content

Commit

Permalink
build: bump org.mockito:mockito-core from 5.5.0 to 5.10.0 (#101)
Browse files Browse the repository at this point in the history
* build: bump org.mockito:mockito-core from 5.5.0 to 5.10.0

Bumps [org.mockito:mockito-core](https://github.com/mockito/mockito) from 5.5.0 to 5.10.0.
- [Release notes](https://github.com/mockito/mockito/releases)
- [Commits](mockito/mockito@v5.5.0...v5.10.0)

---
updated-dependencies:
- dependency-name: org.mockito:mockito-core
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* use version catalog

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Sylvain Juge <763082+SylvainJuge@users.noreply.github.com>
  • Loading branch information
dependabot[bot] and SylvainJuge authored Jan 26, 2024
1 parent 8a6f156 commit 6e6f358
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@ subprojects {
implementation(platform(catalog.opentelemetryInstrumentationBom))
implementation(platform(catalog.opentelemetryInstrumentationAlphaBom))

testImplementation("org.mockito:mockito-core:5.5.0")
testImplementation(catalog.mockito)

testImplementation(enforcedPlatform("org.junit:junit-bom:" + catalog.versions.junit.get().toString()))
testImplementation(enforcedPlatform(catalog.junitBom))
testImplementation("org.junit.jupiter:junit-jupiter")
}

Expand Down
3 changes: 3 additions & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ testcontainers = "org.testcontainers:testcontainers:1.19.4"
logback = "ch.qos.logback:logback-classic:1.4.14"
jackson = "com.fasterxml.jackson.core:jackson-databind:2.16.1"
protobuf-util = "com.google.protobuf:protobuf-java-util:3.25.2"
mockito = "org.mockito:mockito-core:5.10.0"

junitBom = { group = "org.junit", name = "junit-bom", version.ref = "junit" }

spotlessPlugin = { group = "com.diffplug.spotless", name = "spotless-plugin-gradle", version.ref = "spotless" }

Expand Down
2 changes: 1 addition & 1 deletion testing-common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ dependencies {
implementation(libs.assertj.core)
implementation("io.opentelemetry:opentelemetry-sdk-testing")
implementation("io.opentelemetry:opentelemetry-exporter-logging")
implementation(enforcedPlatform("org.junit:junit-bom:" + catalog.versions.junit.get()))
implementation(enforcedPlatform(catalog.junitBom))
implementation("org.junit.jupiter:junit-jupiter")

compileOnly(libs.findbugs.jsr305)
Expand Down

0 comments on commit 6e6f358

Please sign in to comment.