Skip to content

Commit

Permalink
build: remove explicit bouncy libs
Browse files Browse the repository at this point in the history
  • Loading branch information
patlo-iog committed May 6, 2024
1 parent 354913b commit bcff9c9
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -167,11 +167,6 @@ lazy val D = new {
val monocleMacro: ModuleID = "dev.optics" %% "monocle-macro" % V.monocle % Test

val apollo = "io.iohk.atala.prism.apollo" % "apollo-jvm" % V.apollo
// TODO: check this
// Added here to make prism-crypto works.
// Once migrated to apollo, re-evaluate if this should be removed.
val bouncyBcpkix = "org.bouncycastle" % "bcpkix-jdk18on" % V.bouncyCastle
val bouncyBcprov = "org.bouncycastle" % "bcprov-jdk18on" % V.bouncyCastle

// LIST of Dependencies
val doobieDependencies: Seq[ModuleID] =
Expand Down Expand Up @@ -201,8 +196,6 @@ lazy val D_SharedCrypto = new {
Seq(
D.zioJson,
D.apollo,
D.bouncyBcpkix,
D.bouncyBcprov,
D.nimbusJwt,
D.zioTest,
D.zioTestSbt,
Expand Down Expand Up @@ -394,7 +387,6 @@ lazy val D_CloudAgent = new {
D.micrometer,
D.micrometerPrometheusRegistry
)
val bouncyDependencies: Seq[ModuleID] = Seq(D.bouncyBcpkix, D.bouncyBcprov)
val tapirDependencies: Seq[ModuleID] =
Seq(
tapirSwaggerUiBundle,
Expand All @@ -412,7 +404,7 @@ lazy val D_CloudAgent = new {

// Project Dependencies
lazy val keyManagementDependencies: Seq[ModuleID] =
baseDependencies ++ bouncyDependencies ++ D.doobieDependencies ++ Seq(D.zioCatsInterop, D.zioMock, vaultDriver)
baseDependencies ++ D.doobieDependencies ++ Seq(D.zioCatsInterop, D.zioMock, vaultDriver)

lazy val iamDependencies: Seq[ModuleID] = Seq(keycloakAuthz, D.jwtCirce)

Expand Down

0 comments on commit bcff9c9

Please sign in to comment.