Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
GrigoriiBerezin committed May 10, 2024
1 parent 3b04d2e commit 9953754
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ addCommandAlias("prepare", "fmt")

addCommandAlias(
"testJVM",
"zioJsonJVM/test; zioJsonYaml/test; zioJsonInteropHttp4s/test; zioJsonInteropScalaz7xJVM/test; zioJsonGolden/test"
"zioJsonJVM/test; zioJsonYaml/test; zioJsonInteropHttp4s/test; zioJsonInteropScalaz7xJVM/test; zioJsonGolden/test; zioJsonInteropNewtypeJVM/test"
)

addCommandAlias(
Expand All @@ -37,7 +37,7 @@ addCommandAlias(

addCommandAlias(
"testScala2JS",
"zioJsonMacrosJS/test; zioJsonInteropRefinedJS/test"
"zioJsonMacrosJS/test; zioJsonInteropRefinedJS/test; zioJsonInteropNewtypeJS/test"
)

addCommandAlias(
Expand Down Expand Up @@ -366,11 +366,13 @@ lazy val zioJsonInteropNewtype = crossProject(JSPlatform, JVMPlatform)
.settings(buildInfoSettings("zio.json.interop.newtype"))
.settings(macroExpansionSettings)
.settings(
crossScalaVersions -= ScalaDotty,
libraryDependencies ++= Seq(
"io.estatico" %%% "newtype" % "0.4.4",
"dev.zio" %%% "zio-test" % zioVersion % "test",
"dev.zio" %%% "zio-test-sbt" % zioVersion % "test"
),
scalacOptions += "-language:implicitConversions",
testFrameworks += new TestFramework("zio.test.sbt.ZTestFramework")
)
.enablePlugins(BuildInfoPlugin)
Expand Down Expand Up @@ -400,7 +402,8 @@ lazy val docs = project
zioJsonMacrosJVM,
zioJsonInteropHttp4s,
zioJsonInteropRefined.jvm,
zioJsonInteropScalaz7x.jvm
zioJsonInteropScalaz7x.jvm,
zioJsonInteropNewtype.jvm
)
.settings(
crossScalaVersions -= ScalaDotty,
Expand Down

0 comments on commit 9953754

Please sign in to comment.