Skip to content

Commit dec56eb

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

3 files changed

Lines changed: 6 additions & 6 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/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)