Skip to content

Commit

Permalink
Move BouncyCastle version constraints to test-platform module
Browse files Browse the repository at this point in the history
  • Loading branch information
emlun committed Sep 14, 2022
1 parent 3840cf4 commit b5bcf11
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 0 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,6 @@ dependencies {
api('com.google.guava:guava:[24.1.1,32)')
api('com.upokecenter:cbor:[4.5.1,5)')
api('org.apache.httpcomponents:httpclient:[4.5.2,5)')
api('org.bouncycastle:bcpkix-jdk18on:[1.62,2)')
api('org.bouncycastle:bcprov-jdk18on:[1.62,2)')
api('org.slf4j:slf4j-api:[1.7.25,3)')
}
}
Expand Down
2 changes: 2 additions & 0 deletions test-platform/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,7 @@ dependencies {
api("org.scalatestplus:junit-4-13_2.13:3.2.13.0")
api("org.scalatestplus:scalacheck-1-16_2.13:3.2.13.0")
api("uk.org.lidalia:slf4j-test:1.2.0")
api("org.bouncycastle:bcpkix-jdk18on:[1.62,2)")
api("org.bouncycastle:bcprov-jdk18on:[1.62,2)")
}
}
2 changes: 1 addition & 1 deletion webauthn-server-demo/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ val coreTestsOutput = project(":webauthn-server-core").extensions.getByType(Sour

dependencies {
implementation(platform(rootProject))
implementation(platform(project(":test-platform")))

implementation(project(":webauthn-server-attestation"))
implementation(project(":webauthn-server-core"))
Expand All @@ -33,7 +34,6 @@ dependencies {
runtimeOnly("org.glassfish.jersey.containers:jersey-container-servlet:2.36")
runtimeOnly("org.glassfish.jersey.inject:jersey-hk2:2.36")

testImplementation(platform(project(":test-platform")))
testImplementation(coreTestsOutput)
testImplementation(project(":yubico-util-scala"))

Expand Down

0 comments on commit b5bcf11

Please sign in to comment.