Ignore updates to mockito 5 (#5132)

This commit is contained in:
jack-berg 2023-01-17 10:45:07 -06:00 committed by GitHub
parent 33faf8bdf6
commit c475798cf1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View File

@ -21,3 +21,6 @@ updates:
ignore: ignore:
- dependency-name: "edu.berkeley.cs.jqf:jqf-fuzz" - dependency-name: "edu.berkeley.cs.jqf:jqf-fuzz"
- dependency-name: "org.jetbrains.kotlinx:kotlinx-coroutines-core" - dependency-name: "org.jetbrains.kotlinx:kotlinx-coroutines-core"
# Ignore updates to next mockito major version 5.x.x, which requires Java 11
- dependency-name: "org.mockito:mockito-core"
update-types: ["version-update:semver-major"]

View File

@ -28,6 +28,7 @@ val DEPENDENCY_BOMS = listOf(
val autoValueVersion = "1.10.1" val autoValueVersion = "1.10.1"
val errorProneVersion = "2.18.0" val errorProneVersion = "2.18.0"
val jmhVersion = "1.36" val jmhVersion = "1.36"
// Mockito 5.x.x requires Java 11 https://github.com/mockito/mockito/releases/tag/v5.0.0
val mockitoVersion = "4.11.0" val mockitoVersion = "4.11.0"
val slf4jVersion = "2.0.6" val slf4jVersion = "2.0.6"
val opencensusVersion = "0.31.1" val opencensusVersion = "0.31.1"