File tree Expand file tree Collapse file tree 4 files changed +7
-6
lines changed
plugin/src/sbt-test/sbt-scala3-migrate/unresolved-dependencies Expand file tree Collapse file tree 4 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 3
3
4
4
# Scala Steward: Reformat with scalafmt 3.8.2
5
5
006fe434b9a92eebadcea4a7f8f423484c955a19
6
+
7
+ # Scala Steward: Reformat with scalafmt 3.8.4
8
+ de03e98afc7ec386587569627f1bd8d2455289b3
Original file line number Diff line number Diff line change 1
- version = "3.8.3 "
1
+ version = "3.8.4 "
2
2
runner.dialect = scala213
3
3
maxColumn = 120
4
4
align.preset = most
Original file line number Diff line number Diff line change @@ -186,15 +186,14 @@ lazy val `scalafix-output` = project
186
186
publish / skip := true ,
187
187
crossScalaVersions := List (V .scala213, V .scala3),
188
188
scalacOptions ++= (if (scalaVersion.value.startsWith(" 3" )) Seq (" -Ykind-projector" ) else Seq ()),
189
- libraryDependencies ++= {
189
+ libraryDependencies ++=
190
190
Seq (" org.typelevel" %% " cats-core" % V .catsCore, " dev.zio" %% " zio" % V .zio) ++
191
191
(CrossVersion .partialVersion(scalaVersion.value) match {
192
192
case Some ((2 , 13 )) =>
193
193
Seq (compilerPlugin((" org.typelevel" %% " kind-projector" % V .kindProjector).cross(CrossVersion .full)))
194
194
case Some ((3 , _)) => Seq ()
195
195
case _ => Seq ()
196
- })
197
- },
196
+ }),
198
197
buildInfoKeys := Seq [BuildInfoKey ](name)
199
198
)
200
199
.enablePlugins(BuildInfoPlugin )
Original file line number Diff line number Diff line change @@ -6,9 +6,8 @@ lazy val `unresolved-dependencies` = project
6
6
" org.typelevel" %% " cats-core" % V .catsCore,
7
7
compilerPlugin(" org.typelevel" % " kind-projector" % V .kindProjector cross CrossVersion .full)
8
8
),
9
- TaskKey [Unit ](" checkFallback" ) := {
9
+ TaskKey [Unit ](" checkFallback" ) :=
10
10
assert(scalaVersion.value == V .scala213, s " Wrong scala version ${scalaVersion.value}. Expected ${V .scala213}" )
11
- }
12
11
)
13
12
14
13
lazy val V = new {
You can’t perform that action at this time.
0 commit comments