diff options
| author | Jim Lawson | 2019-01-07 09:52:34 -0800 |
|---|---|---|
| committer | GitHub | 2019-01-07 09:52:34 -0800 |
| commit | b8e1f3f0e081aff22cf608db109ad1299abd980d (patch) | |
| tree | eadad6d2a24666ae43d14d99df137fd26038c2ad | |
| parent | 9d02871dc3a57e9b4bf91da83273198d1e31287e (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.
| -rw-r--r-- | build.sbt | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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", |
