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