File tree Expand file tree Collapse file tree 1 file changed +10
-5
lines changed Expand file tree Collapse file tree 1 file changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -158,27 +158,32 @@ lazy val armeria = (projectMatrix in file("armeria"))
158
158
.dependsOn(core)
159
159
160
160
lazy val fs2ce2 = (projectMatrix in file(" fs2-ce2" ))
161
- .settings(name := " fs2-ce2" )
161
+ .settings(
162
+ name := " fs2-ce2" ,
163
+ libraryDependencies ++= dependenciesFor(scalaVersion.value)(
164
+ " co.fs2" %%% " fs2-core" % fs2_2_version(_)
165
+ )
166
+ )
162
167
.jvmPlatform(
163
168
scalaVersions = scala2 ++ scala3,
164
169
settings = commonJvmSettings ++ Seq (
165
170
libraryDependencies ++= dependenciesFor(scalaVersion.value)(
166
- " co.fs2" %%% " fs2-io" % fs2_2_version(_)
171
+ " co.fs2" %% " fs2-io" % fs2_2_version(_)
167
172
)
168
173
)
169
174
)
170
175
.jsPlatform(
171
- scalaVersions = scala2 ++ scala3,
176
+ scalaVersions = List (scala2_12, scala2_13) ++ scala3,
172
177
settings = commonJsSettings ++ browserChromeTestSettings
173
178
)
174
179
.dependsOn(core)
175
180
176
181
lazy val fs2 = (projectMatrix in file(" fs2" ))
177
- .settings(name := " fs2" )
182
+ .settings(name := " fs2" , libraryDependencies += " co.fs2 " %%% " fs2-core " % fs2_3_version )
178
183
.jvmPlatform(
179
184
scalaVersions = List (scala2_12, scala2_13) ++ scala3,
180
185
settings = commonJvmSettings ++ Seq (
181
- libraryDependencies += " co.fs2" %%% " fs2-io" % fs2_3_version
186
+ libraryDependencies += " co.fs2" %% " fs2-io" % fs2_3_version
182
187
)
183
188
)
184
189
.jsPlatform(
You can’t perform that action at this time.
0 commit comments