mirror of https://github.com/sbt/sbt.git
fix scripted
This commit is contained in:
parent
627bd6bea1
commit
c6ef392027
|
|
@ -13,22 +13,13 @@ def commonSettings: Seq[Def.Setting[_]] =
|
|||
resolvers += MavenCache("local-maven", (LocalRootProject / target).value / "local-maven"),
|
||||
)
|
||||
|
||||
lazy val root = (project in file("."))
|
||||
.settings(commonSettings)
|
||||
|
||||
val `v1-0-0` = (project in file("v1.0.0"))
|
||||
val semverSpecTest = project
|
||||
.settings(commonSettings)
|
||||
.settings(
|
||||
name := "semver-spec-test",
|
||||
version := "1.0.0",
|
||||
)
|
||||
|
||||
val `v1-1-0` = (project in file("v1.1.0"))
|
||||
.settings(commonSettings)
|
||||
.settings(
|
||||
name := "semver-spec-test",
|
||||
version := "1.1.0",
|
||||
)
|
||||
|
||||
val middle = project
|
||||
.settings(commonSettings)
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
> v1-0-0/publish
|
||||
> v1-1-0/publish
|
||||
> semverSpecTest/publish
|
||||
> set semverSpecTest/version := "1.1.0"
|
||||
> semverSpecTest/publish
|
||||
> middle/publish
|
||||
|
||||
> use/check
|
||||
|
|
|
|||
|
|
@ -1,3 +0,0 @@
|
|||
package example
|
||||
|
||||
trait Foo {}
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
package example
|
||||
|
||||
trait Foo {}
|
||||
Loading…
Reference in New Issue