Skip to content

Commit

Permalink
Update build.sbt
Browse files Browse the repository at this point in the history
  • Loading branch information
aracho1 authored Jul 31, 2024
1 parent dff53e9 commit ceae0bd
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ lazy val archive = project
)
)

private val jacksonOverride = "com.fasterxml.jackson.core" % "jackson-core" % "2.15.0-rc1"

lazy val api = project
.settings(commonSettings("api"))
.settings(
Expand All @@ -55,7 +57,10 @@ lazy val api = project
)

lazy val download = project.settings(
libraryDependencies += "com.amazonaws" % "aws-java-sdk-s3" % "1.12.307"
libraryDependencies ++= Seq(
"com.amazonaws" % "aws-java-sdk-s3" % "1.12.307",
jacksonOverride
)
)

lazy val root = project.in(file(".")).aggregate(archive, api)

0 comments on commit ceae0bd

Please sign in to comment.