Skip to content

Commit bb1147c

Browse files
committed
sbt 2.0.0-RC3
1 parent 05ba2f2 commit bb1147c

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ jobs:
3535
env:
3636
SCALA_VERSION: ${{ matrix.scala-version }}
3737
SBT_VERSION: ${{ matrix.sbt-version }}
38-
run: sbt "++${SCALA_VERSION}" "^^${SBT_VERSION}" test scripted
38+
run: sbt "++${SCALA_VERSION} ; ^^${SBT_VERSION} ; test ; scripted"

build.sbt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,3 +39,10 @@ ThisBuild / publishTo := {
3939
}
4040
ThisBuild / publishMavenStyle := true
4141
ThisBuild / dynverSonatypeSnapshots := true
42+
scalacOptions ++= {
43+
// https://github.com/sbt/sbt/issues/8220
44+
if (scalaBinaryVersion.value == "2.12")
45+
Seq("-Wconf:cat=unused-nowarn:s")
46+
else
47+
Nil
48+
}

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.11.4
1+
sbt.version=2.0.0-RC3

0 commit comments

Comments
 (0)