summaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
authorJim Lawson2019-01-07 09:52:34 -0800
committerGitHub2019-01-07 09:52:34 -0800
commitb8e1f3f0e081aff22cf608db109ad1299abd980d (patch)
treeeadad6d2a24666ae43d14d99df137fd26038c2ad /build.sbt
parent9d02871dc3a57e9b4bf91da83273198d1e31287e (diff)
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.
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt4
1 files changed, 4 insertions, 0 deletions
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",