mirror of https://github.com/sbt/sbt.git
Merge pull request #7817 from xuwei-k/sbt-on-command
[2.x] fix deprecated colon syntax in build.sbt
This commit is contained in:
commit
c2a0f162ee
|
|
@ -200,7 +200,7 @@ lazy val sbtRoot: Project = (project in file("."))
|
||||||
Utils.noPublish,
|
Utils.noPublish,
|
||||||
publishLocal := {},
|
publishLocal := {},
|
||||||
Global / commands += Command
|
Global / commands += Command
|
||||||
.single("sbtOn")((state, dir) => s"sbtProj/test:runMain sbt.RunFromSourceMain $dir" :: state),
|
.single("sbtOn")((state, dir) => s"sbtProj/Test/runMain sbt.RunFromSourceMain $dir" :: state),
|
||||||
mimaSettings,
|
mimaSettings,
|
||||||
mimaPreviousArtifacts := Set.empty,
|
mimaPreviousArtifacts := Set.empty,
|
||||||
buildThinClient := (sbtClientProj / buildThinClient).evaluated,
|
buildThinClient := (sbtClientProj / buildThinClient).evaluated,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue