File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ lazy val root = (project withId "stryker4s" in file("."))
1010 // Publish locally for sbt plugin testing
1111 addCommandAlias(
1212 " publishPluginLocal" ,
13- " set ThisBuild / version := \" 0.0.0-TEST-SNAPSHOT\" ; sbtPlugin/publishLocal"
13+ " set ThisBuild / version := \" 0.0.0-TEST-SNAPSHOT\" ; sbtPlugin/publishLocal; sbtPlugin3/publishLocal "
1414 ),
1515 // Publish to .m2 folder for Maven plugin testing
1616 addCommandAlias(
Original file line number Diff line number Diff line change @@ -48,8 +48,8 @@ object MillScripted {
4848 val command = Seq (s " . ${separator}mill " , " --no-daemon" ) ++ args
4949 val os = sys.props(" os.name" ).toLowerCase
5050 val panderToWindows = os match {
51- case n if n contains " windows" => Seq (" cmd" , " /C" ) ++ command
52- case _ => command
51+ case n if n. contains( " windows" ) => Seq (" cmd" , " /C" ) ++ command
52+ case _ => command
5353 }
5454 log.info(s " Running: ${panderToWindows.mkString(" " )}" )
5555 val exit = Process (panderToWindows, mutate).! (logger)
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ object Release {
99 private val stryker4sReleaseAll = " stryker4sReleaseAll"
1010 // Helper command names
1111 private val stryker4sMvnDeploy = " stryker4sMvnDeploy"
12- private val publishM2Core = " core /publishM2"
12+ private val publishM2Core = " core3 /publishM2"
1313 private val crossPublishSigned = " publishSigned"
1414
1515 lazy val releaseCommands : Setting [Seq [Command ]] = commands ++= Seq (
You can’t perform that action at this time.
0 commit comments