Removing deprecated "re-publish release artifacts" behavior from tests.

In sbt 1.0 republishing released artifacts will be removed, causing these tests
to fail.  We migrate to SNAPSHOT version now, to prevent suprises.
This commit is contained in:
Josh Suereth 2014-03-08 09:30:23 -05:00
parent a4b288f35b
commit dff52ce11e
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ object B extends Build {
override def settings = super.settings ++ Seq(
organization := "org.example",
version := "2.0"
version := "2.0-SNAPSHOT"
)
lazy val root = proj("root", ".") aggregate(a,b)

View File

@ -4,6 +4,6 @@ organization := "org.example"
version := "1.0"
libraryDependencies += "org.example" % "b" % "2.0"
libraryDependencies += "org.example" % "b" % "2.0-SNAPSHOT"
ivyPaths <<= ivyPaths in ThisBuild