Skip to content

Commit 700c996

Browse files
authored
Merge pull request #143 from softwaremill/scala-3-for-native
Attempt to add support scala 3 in scalanative for core and ws
2 parents 2726b17 + 634e09c commit 700c996

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ val scala2_13 = "2.13.8"
99
val scala2 = List(scala2_11, scala2_12, scala2_13)
1010
val scala3 = List("3.1.2")
1111

12-
val sttpModelVersion = "1.4.25"
12+
val sttpModelVersion = "1.4.26"
1313

1414
val scalaTestVersion = "3.2.12"
1515
val zio1Version = "1.0.14"
@@ -110,7 +110,7 @@ lazy val core = (projectMatrix in file("core"))
110110
settings = commonJsSettings ++ browserChromeTestSettings
111111
)
112112
.nativePlatform(
113-
scalaVersions = scala2,
113+
scalaVersions = scala2 ++ scala3,
114114
settings = commonNativeSettings
115115
)
116116

@@ -128,7 +128,7 @@ lazy val ws = (projectMatrix in file("ws"))
128128
settings = commonJsSettings ++ browserChromeTestSettings
129129
)
130130
.nativePlatform(
131-
scalaVersions = scala2,
131+
scalaVersions = scala2 ++ scala3,
132132
settings = commonNativeSettings
133133
)
134134
.dependsOn(core)

0 commit comments

Comments
 (0)