Skip to content
Open
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
16 changes: 14 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,20 @@ lazy val universalJvmFlagsSettings = Seq(
// See project/AddMetaInfLicenseFiles.scala.
// Dist-producing modules additionally override Universal / mappings in their own
// build.sbt (not here) — see AddMetaInfLicenseFiles.distMappings.
lazy val asfLicensingSettings = AddMetaInfLicenseFiles.defaultSettings ++ coverageReportSettings ++ universalJvmFlagsSettings
lazy val asfLicensingSettingsWithVendored = AddMetaInfLicenseFiles.workflowOperatorSettings ++ coverageReportSettings ++ universalJvmFlagsSettings
val bouncyCastleVersion = "1.84"

lazy val bouncyCastleOverrides = Seq(
"org.bouncycastle" % "bcpkix-jdk18on" % bouncyCastleVersion,
"org.bouncycastle" % "bcprov-jdk18on" % bouncyCastleVersion,
"org.bouncycastle" % "bcutil-jdk18on" % bouncyCastleVersion
)

lazy val commonDependencyOverrides = Seq(
dependencyOverrides ++= bouncyCastleOverrides
)

lazy val asfLicensingSettings = AddMetaInfLicenseFiles.defaultSettings ++ coverageReportSettings ++ universalJvmFlagsSettings ++ commonDependencyOverrides
lazy val asfLicensingSettingsWithVendored = AddMetaInfLicenseFiles.workflowOperatorSettings ++ coverageReportSettings ++ universalJvmFlagsSettings ++ commonDependencyOverrides

val jacksonVersion = "2.18.8"

Expand Down
6 changes: 3 additions & 3 deletions computing-unit-managing-service/LICENSE-binary
Original file line number Diff line number Diff line change
Expand Up @@ -530,9 +530,9 @@ Source files derived from third-party MIT-licensed projects:

Scala/Java jars:
- net.sourceforge.argparse4j.argparse4j-0.9.0.jar
- org.bouncycastle.bcpkix-jdk18on-1.78.1.jar
- org.bouncycastle.bcprov-jdk18on-1.82.jar
- org.bouncycastle.bcutil-jdk18on-1.78.1.jar
- org.bouncycastle.bcpkix-jdk18on-1.84.jar
- org.bouncycastle.bcprov-jdk18on-1.84.jar
- org.bouncycastle.bcutil-jdk18on-1.84.jar
- org.checkerframework.checker-qual-3.52.0.jar
- org.codehaus.mojo.animal-sniffer-annotations-1.26.jar
- org.projectlombok.lombok-1.18.24.jar
Expand Down
Loading