Skip to content

Commit b9bb2a3

Browse files
committed
Fix JS coordinates for dependencies
1 parent 36bb6b7 commit b9bb2a3

File tree

1 file changed

+10
-12
lines changed

1 file changed

+10
-12
lines changed

build.sbt

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -158,15 +158,14 @@ lazy val armeria = (projectMatrix in file("armeria"))
158158
.dependsOn(core)
159159

160160
lazy val fs2ce2 = (projectMatrix in file("fs2-ce2"))
161-
.settings(
162-
name := "fs2-ce2",
163-
libraryDependencies ++= dependenciesFor(scalaVersion.value)(
164-
"co.fs2" %%% "fs2-io" % fs2_2_version(_)
165-
)
166-
)
161+
.settings(name := "fs2-ce2")
167162
.jvmPlatform(
168163
scalaVersions = scala2 ++ scala3,
169-
settings = commonJvmSettings
164+
settings = commonJvmSettings ++ Seq(
165+
libraryDependencies ++= dependenciesFor(scalaVersion.value)(
166+
"co.fs2" %%% "fs2-io" % fs2_2_version(_)
167+
)
168+
)
170169
)
171170
.jsPlatform(
172171
scalaVersions = scala2 ++ scala3,
@@ -175,13 +174,12 @@ lazy val fs2ce2 = (projectMatrix in file("fs2-ce2"))
175174
.dependsOn(core)
176175

177176
lazy val fs2 = (projectMatrix in file("fs2"))
178-
.settings(
179-
name := "fs2",
180-
libraryDependencies += "co.fs2" %%% "fs2-io" % fs2_3_version
181-
)
177+
.settings(name := "fs2")
182178
.jvmPlatform(
183179
scalaVersions = List(scala2_12, scala2_13) ++ scala3,
184-
settings = commonJvmSettings
180+
settings = commonJvmSettings ++ Seq(
181+
libraryDependencies += "co.fs2" %%% "fs2-io" % fs2_3_version
182+
)
185183
)
186184
.jsPlatform(
187185
scalaVersions = List(scala2_12, scala2_13) ++ scala3,

0 commit comments

Comments
 (0)