Skip to content

Commit

Permalink
Add replacement rules for bouncycastle jdk15on -> jdk18on
Browse files Browse the repository at this point in the history
  • Loading branch information
SgtSilvio committed Jul 24, 2023
1 parent ed9897f commit b60e857
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,12 @@ dependencies {
testImplementation("org.mockito:mockito-core:${property("mockito.version")}")
testImplementation("com.squareup.okhttp3:mockwebserver:${property("ok-http.version")}")
testImplementation("com.ginsberg:junit5-system-exit:${property("system-exit.version")}")

modules {
module("org.bouncycastle:bcpkix-jdk15on") { replacedBy("org.bouncycastle:bcpkix-jdk18on") }
module("org.bouncycastle:bcprov-jdk15on") { replacedBy("org.bouncycastle:bcprov-jdk18on") }
module("org.bouncycastle:bcutil-jdk15on") { replacedBy("org.bouncycastle:bcutil-jdk18on") }
}
}

/* ******************** integration Tests ******************** */
Expand Down

0 comments on commit b60e857

Please sign in to comment.