@@ -29,8 +29,8 @@ lazy val circe = projectMatrix
2929 sharedSettings,
3030 name := " mutation-testing-metrics-circe" ,
3131 libraryDependencies ++= Seq (
32- " io.circe" %%% " circe-core" % " 0.14.13 " ,
33- " io.circe" %%% " circe-parser" % " 0.14.13 "
32+ " io.circe" %%% " circe-core" % " 0.14.14 " ,
33+ " io.circe" %%% " circe-parser" % " 0.14.14 "
3434 )
3535 )
3636 .jvmPlatform(
@@ -98,11 +98,11 @@ lazy val npmProjectSettings = Seq(
9898inThisBuild(
9999 Seq (
100100 // Don't publish root project
101- publish / skip := true ,
102- version := packageVersion(file(" ." )),
103- organization := " io.stryker-mutator" ,
104- versionScheme := Some (" semver-spec" ),
105- homepage := Some (url(" https://stryker-mutator.io/" )),
101+ publish / skip := true ,
102+ version := packageVersion(file(" ." )),
103+ organization := " io.stryker-mutator" ,
104+ versionScheme := Some (" semver-spec" ),
105+ homepage := Some (url(" https://stryker-mutator.io/" )),
106106 licenses += " Apache-2.0" -> url(
107107 " https://www.apache.org/licenses/LICENSE-2.0"
108108 ),
@@ -159,8 +159,8 @@ lazy val skipNormalProjectPublish = !skipElementsPublish || !skipSchemaPublish
159159def packageVersion (packageJsonDir : File ): String = {
160160 import scala .sys .process ._
161161
162- val command = Seq (" node" , " -p" , " require('./package.json').version" )
163- val os = sys.props(" os.name" ).toLowerCase
162+ val command = Seq (" node" , " -p" , " require('./package.json').version" )
163+ val os = sys.props(" os.name" ).toLowerCase
164164 val panderToWindows = os match {
165165 case n if n contains " windows" => Seq (" cmd" , " /C" ) ++ command
166166 case _ => command
0 commit comments