Skip to content

Commit

Permalink
Merge pull request #1425 from lolgab/more-modules-native-js
Browse files Browse the repository at this point in the history
Publish other modules for Scala Native Scala 3
  • Loading branch information
Pask423 authored May 2, 2022
2 parents 9517e0d + f8b4a7f commit 68b4332
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -740,7 +740,7 @@ lazy val jsonCommon = (projectMatrix in (file("json/common")))
settings = commonJvmSettings
)
.jsPlatform(scalaVersions = scala2 ++ scala3, settings = commonJsSettings)
.nativePlatform(scalaVersions = scala2, settings = commonNativeSettings)
.nativePlatform(scalaVersions = scala2 ++ scala3, settings = commonNativeSettings)
.dependsOn(core)

lazy val circe = (projectMatrix in file("json/circe"))
Expand Down Expand Up @@ -834,7 +834,7 @@ lazy val upickle = (projectMatrix in file("json/upickle"))
settings = commonJvmSettings
)
.jsPlatform(scalaVersions = List(scala2_12, scala2_13) ++ scala3, settings = commonJsSettings)
.nativePlatform(scalaVersions = List(scala2_12, scala2_13), settings = commonNativeSettings)
.nativePlatform(scalaVersions = List(scala2_12, scala2_13) ++ scala3, settings = commonNativeSettings)
.dependsOn(core, jsonCommon)

lazy val json4sVersion = "4.0.5"
Expand Down Expand Up @@ -926,7 +926,9 @@ lazy val scribeBackend = (projectMatrix in file("logging/scribe"))
),
scalaTest
)
.jvmPlatform(scalaVersions = List(scala2_12, scala2_13))
.jvmPlatform(scalaVersions = List(scala2_12, scala2_13) ++ scala3, settings = commonJvmSettings)
.jsPlatform(scalaVersions = List(scala2_12, scala2_13) ++ scala3, settings = commonJsSettings)
.nativePlatform(scalaVersions = List(scala2_12, scala2_13) ++ scala3, settings = commonNativeSettings)
.dependsOn(core)

lazy val slf4jBackend = (projectMatrix in file("logging/slf4j"))
Expand Down

0 comments on commit 68b4332

Please sign in to comment.