Skip to content

Commit 6275568

Browse files
build: use sbt 2
1 parent e679c94 commit 6275568

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

build.sbt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
import Dependencies.*
22
import Settings.*
3-
import sbt.internal.ProjectMatrix
43

5-
lazy val root = (project withId "stryker4s" in file("."))
4+
lazy val root = project
5+
.withId("stryker4s")
6+
.in(file("."))
67
.settings(
78
buildLevelSettings,
89
publish / skip := true,

project/Dependencies.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ object Dependencies {
77
val scala213 = "2.13.18"
88

99
// sbt-test-runner uses LTS to ensure compatibility with any project it runs in
10-
val scala3Lts = "3.3.8"
10+
val scala3Lts = "3.8.4"
1111

1212
val scala3 = "3.8.4"
1313

project/build.properties

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

project/plugins.sbt

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.11.2")
22
addSbtPlugin("io.stryker-mutator" % "sbt-stryker4s" % "0.21.0")
33
addSbtPlugin("org.typelevel" % "sbt-tpolecat" % "0.5.6")
4-
addSbtPlugin("com.eed3si9n" % "sbt-projectmatrix" % "0.11.0")
54

65
// Protobuf plugin and its dependencies
7-
addSbtPlugin("com.thesamet" % "sbt-protoc" % "1.0.8")
8-
libraryDependencies += "com.thesamet.scalapb" %% "compilerplugin" % "0.11.20"
6+
addSbtPlugin("com.thesamet" % "sbt-protoc" % "1.1.0-RC1")
7+
libraryDependencies += "com.thesamet.scalapb" %% "compilerplugin" % "1.0.0-alpha.5"

0 commit comments

Comments
 (0)