Merge pull request #1162 from sbt/wip/fix-deprecated-ivy-in-test

Removing deprecated "re-publish release artifacts" behavior from tests.
This commit is contained in:
Josh Suereth 2014-03-08 13:07:32 -05:00
commit 1626226b06
3 changed files with 21 additions and 2 deletions

19
.travis.yml Normal file
View File

@ -0,0 +1,19 @@
language: scala
script:
- sbt "scripted $SCRIPTED_TEST"
env:
- SCRIPTED_TEST=actions/*
- SCRIPTED_TEST=api/*
- SCRIPTED_TEST=compiler-project/*
- SCRIPTED_TEST=dependency-management/*
- SCRIPTED_TEST=java/*
- SCRIPTED_TEST=package/*
- SCRIPTED_TEST=reporter/*
- SCRIPTED_TEST=run/*
- SCRIPTED_TEST=source-dependencies/*
- SCRIPTED_TEST=tests/*
jdk:
- openjdk6
notifications:
email:
- qbranch@typesafe.com

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