We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents adefc7f + 0c619b2 commit ce30439Copy full SHA for ce30439
project/Scoverage.scala
@@ -4,7 +4,7 @@ import sbt._
4
object Scoverage extends Build {
5
6
val Org = "org.scoverage"
7
- val Version = "1.0.4"
+ val Version = "1.0.5-SNAPSHOT"
8
val Scala = "2.11.4"
9
val MockitoVersion = "1.9.5"
10
val ScalatestVersion = "2.2.2"
@@ -32,7 +32,7 @@ object Scoverage extends Build {
32
(v: String) =>
33
val nexus = "https://oss.sonatype.org/"
34
if (v.trim.endsWith("SNAPSHOT"))
35
- Some(Resolver.file("file", new File(Path.userHome.absolutePath + "/.m2/repository")))
+ Some(Resolver.sonatypeRepo("snapshots"))
36
else
37
Some("releases" at nexus + "service/local/staging/deploy/maven2")
38
},
0 commit comments