Skip to content

#85 - Formalization of artifact publishing and releasing policy - step 1 #105

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 17, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions project/Scoverage.scala
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import sbt._
object Scoverage extends Build {

val Org = "org.scoverage"
val Version = "1.0.4"
val Version = "1.0.5-SNAPSHOT"
val Scala = "2.11.4"
val MockitoVersion = "1.9.5"
val ScalatestVersion = "2.2.2"
Expand Down Expand Up @@ -32,7 +32,7 @@ object Scoverage extends Build {
(v: String) =>
val nexus = "https://oss.sonatype.org/"
if (v.trim.endsWith("SNAPSHOT"))
Some(Resolver.file("file", new File(Path.userHome.absolutePath + "/.m2/repository")))
Some(Resolver.sonatypeRepo("snapshots"))
else
Some("releases" at nexus + "service/local/staging/deploy/maven2")
},
Expand Down