Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: remove unused mockito-inline dependency #1026

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion DEPENDENCIES
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,6 @@ maven/mavencentral/org.jvnet.mimepull/mimepull/1.9.15, CDDL-1.1 OR GPL-2.0-only
maven/mavencentral/org.latencyutils/LatencyUtils/2.0.3, BSD-2-Clause, approved, CQ17408
maven/mavencentral/org.mockito/mockito-core/5.2.0, MIT AND (Apache-2.0 AND MIT) AND Apache-2.0, approved, #7401
maven/mavencentral/org.mockito/mockito-core/5.9.0, MIT AND (Apache-2.0 AND MIT) AND Apache-2.0, approved, #12774
maven/mavencentral/org.mockito/mockito-inline/5.2.0, MIT, approved, clearlydefined
maven/mavencentral/org.objenesis/objenesis/3.3, Apache-2.0, approved, clearlydefined
maven/mavencentral/org.opentest4j/opentest4j/1.3.0, Apache-2.0, approved, #9713
maven/mavencentral/org.ow2.asm/asm-commons/9.5, BSD-3-Clause, approved, #7553
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,5 @@ dependencies {
testImplementation(libs.awaitility)
testImplementation(libs.edc.junit)

testImplementation(libs.mockito.inline)
testImplementation(libs.testcontainers.junit)
}
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,5 @@ dependencies {
implementation(libs.edc.spi.core)
testImplementation(libs.edc.junit)

testImplementation(libs.mockito.inline)
testImplementation(libs.testcontainers.junit)
}
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,5 @@ dependencies {
implementation(libs.edc.spi.transfer)

testImplementation(libs.edc.junit)
testImplementation(libs.mockito.inline)
testImplementation(libs.testcontainers.junit)
}
2 changes: 0 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ slf4j = "2.0.11"
okhttp = "4.12.0"
mockwebserver = "5.0.0-alpha.12"
bouncyCastle-jdk18on = "1.77"
mockito = "5.2.0"
restAssured = "5.4.0"
apache-sshd = "2.12.0"
testcontainers = "1.19.4"
Expand Down Expand Up @@ -170,7 +169,6 @@ nimbus-jwt = { module = "com.nimbusds:nimbus-jose-jwt", version.ref = "nimbus" }
okhttp = { module = "com.squareup.okhttp3:okhttp", version.ref = "okhttp" }
okhttp-mockwebserver = { module = "com.squareup.okhttp3:mockwebserver", version.ref = "mockwebserver" }
bouncyCastle-bcpkixJdk18on = { module = "org.bouncycastle:bcpkix-jdk18on", version.ref = "bouncyCastle-jdk18on" }
mockito-inline = { module = "org.mockito:mockito-inline", version.ref = "mockito" }
restAssured = { module = "io.rest-assured:rest-assured", version.ref = "restAssured" }
apache-sshd-core = { module = "org.apache.sshd:sshd-core", version.ref = "apache-sshd" }
apache-sshd-sftp = { module = "org.apache.sshd:sshd-sftp", version.ref = "apache-sshd" }
Expand Down
Loading