mirror of https://github.com/sbt/sbt.git
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:
commit
1626226b06
|
|
@ -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
|
||||
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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
|
||||
Loading…
Reference in New Issue