Skip to content

Commit d5623fe

Browse files
build(deps-dev): update circe-core, circe-parser from 0.14.13 to 0.14.14 (#3799)
1 parent c082006 commit d5623fe

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

packages/metrics-scala/build.sbt

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -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(
9898
inThisBuild(
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
159159
def 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

Comments
 (0)