-
Notifications
You must be signed in to change notification settings - Fork 21
Description
I'm very new to building with SBT, so please be patient.
-
[error] [launcher] download failed: org.scala-lang.modules#scala-xml_2.12;1.2.0!scala-xml_2.12.jar(bundle)
I fixed error move exception getCause to TestUtils #1 by finding the file and placing it in the .sbt\preloaded\org\scala-lang\modules\scala-xml_2.12\1.2.0 directory. -
[warn] Note: Unresolved dependencies path:
[error] sbt.librarymanagement.ResolveException: Error downloading org.openjfx:javafx.base:11.0.0-SNAPSHOT
I fixed error #2 by figuring out how to add a repo to build.sbt. Several trials/errors later, adding the following worked:
resolvers ++= Seq(
MavenRepo("confluent", "https://packages.confluent.io/maven/"),
Resolver.sonatypeRepo("public")
)
Again, I'm not 100% sure workaround #2 will work for others.