From b8e1f3f0e081aff22cf608db109ad1299abd980d Mon Sep 17 00:00:00 2001 From: Jim Lawson Date: Mon, 7 Jan 2019 09:52:34 -0800 Subject: Add explicit Sonatype resolvers so SNAPSHOTs can be found remotely. (#975) **NOTE**: A `publishLocal` should replace the downloaded `.ivy2/cache/...` version with a pointer to the `.ivy2/local/...` version. To force refetching of the Sonatype repository version, you should delete both `.ivy2/{cache,local}/...` versions.--- build.sbt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build.sbt b/build.sbt index 8b097c18..d185f022 100644 --- a/build.sbt +++ b/build.sbt @@ -33,6 +33,10 @@ def javacOptionsVersion(scalaVersion: String): Seq[String] = { val defaultVersions = Map("firrtl" -> "1.2-SNAPSHOT") lazy val commonSettings = Seq ( + resolvers ++= Seq( + Resolver.sonatypeRepo("snapshots"), + Resolver.sonatypeRepo("releases") + ), organization := "edu.berkeley.cs", version := "3.2-SNAPSHOT", git.remoteRepo := "git@github.com:freechipsproject/chisel3.git", -- cgit v1.2.3