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

Upgrading bouncycastle and including javax.mail as a dependency #207

Merged
merged 1 commit into from
Apr 19, 2024
Merged
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
5 changes: 3 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -115,11 +115,11 @@ lazy val backend = (project in file("backend"))
libraryDependencies ++= Seq(
ws,
"commons-codec" % "commons-codec" % "1.11",
"org.bouncycastle" % "bcprov-jdk15on" % "1.70",
"org.bouncycastle" % "bcprov-jdk18on" % "1.71",
// required by tikka, used to be part of bcprov-jdk15on, pulled out into a separate library from 1.69 onwards
// see https://github.com/guardian/giant/pull/92 for details - may be removable if it gets added as an explicit
// dependency to tikka or another library
"org.bouncycastle" % "bcutil-jdk15on" % "1.70",
"org.bouncycastle" % "bcutil-jdk18on" % "1.71",
"commons-io" % "commons-io" % "2.6",
"com.sksamuel.elastic4s" %% "elastic4s-client-esjava" % "8.11.4",
"org.elasticsearch.client" % "elasticsearch-rest-client-sniffer" % "8.6.2",
Expand Down Expand Up @@ -148,6 +148,7 @@ lazy val backend = (project in file("backend"))
// angus mail is the implementation of jakarta mail. If updating this you may also need to update the mbox provider jar file
// see https://github.com/guardian/giant/pull/131
"org.eclipse.angus" % "angus-mail" % "2.0.2",
"com.sun.mail" % "javax.mail" % "1.6.2",
"com.gu" %% "pan-domain-auth-verification" % "1.2.0",
"com.amazonaws" % "aws-java-sdk-secretsmanager" % "1.12.528",

Expand Down
Loading