Scala: Dependency Management and Scanning for build.sbt
The Challenge
Example
// Original build.sbt without lock files
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-http" % "10.2.+",
"org.apache.spark" %% "spark-core" % "3.+",
"com.datastax.cassandra" % "cassandra-driver-core" % "latest.release"
)Solution: Add a lockfile
Alternative Workaround: Container Scanning
Benefits of Container Scanning
When to Use Container Scanning
Container Scanning vs. Lock Files
Last updated
Was this helpful?