Skip to content

Commit

Permalink
Merge pull request #1264 from xuwei-k/migrating-scala-3-version
Browse files Browse the repository at this point in the history
  • Loading branch information
eed3si9n authored Dec 21, 2024
2 parents fdd8ee3 + fefafb0 commit d376fed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/reference/changes/migrating-from-sbt-1.x.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ lazy val plugin = (projectMatrix in file("plugin"))
.settings(
name := "sbt-vimquit",
)
.jvmPlatform(scalaVersions = Seq("3.3.3", "2.12.20"))
.jvmPlatform(scalaVersions = Seq("3.6.2", "2.12.20"))
```

If you use `projectMatrix`, make sure to move the plugin to a subdirectory like `plugin/`. Otherwise, the synthetic root project will also pick up the `src/`.
Expand All @@ -71,7 +71,7 @@ Use sbt 1.10.2 or later, if you want to cross build using sbt 1.x.
```scala
// using sbt 1.x
lazy val scala212 = "2.12.20"
lazy val scala3 = "3.3.4"
lazy val scala3 = "3.6.2"
ThisBuild / crossScalaVersions := Seq(scala212, scala3)

lazy val plugin = (project in file("plugin"))
Expand Down

0 comments on commit d376fed

Please sign in to comment.