diff --git a/launch/src/main/input_resources/sbt/sbt.boot.properties b/launch/src/main/input_resources/sbt/sbt.boot.properties index 41957ce56..21fbe3398 100644 --- a/launch/src/main/input_resources/sbt/sbt.boot.properties +++ b/launch/src/main/input_resources/sbt/sbt.boot.properties @@ -14,6 +14,7 @@ local jcenter: https://jcenter.bintray.com/ ${{repositories}} + maven-central [boot] diff --git a/project/Transform.scala b/project/Transform.scala index 950aadd6f..25eee5308 100644 --- a/project/Transform.scala +++ b/project/Transform.scala @@ -88,7 +88,7 @@ object Transform { def read(file: File): Option[String] = try { Some(IO.read(file)) } catch { case _: java.io.IOException => None } lazy val Property = """\$\{\{([\w.-]+)\}\}""".r - def repositories(isSnapshot: Boolean) = Releases :: (if (isSnapshot) Snapshots :: SonatypeSnapshots :: Nil else Nil) + def repositories(isSnapshot: Boolean) = Releases :: (if (isSnapshot) Snapshots :: SonatypeSnapshots :: Nil else Nil) lazy val Releases = typesafeRepository("releases") lazy val Snapshots = typesafeRepository("snapshots") lazy val SonatypeSnapshots = sonatypeRepsoitory("snapshots")