Skip to content

Commit

Permalink
Merge pull request #462 from adpi2/semanticdb-auto-update
Browse files Browse the repository at this point in the history
Automate scalameta updates
  • Loading branch information
adpi2 committed Mar 13, 2024
2 parents 35b7b08 + 8aaba7f commit 69cde4e
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion build.sbt
Expand Up @@ -18,6 +18,25 @@ inThisBuild(
)
)

lazy val root = project.in(file("."))
.settings(
publish / skip := true,
// for scala-steward
libraryDependencies += "org.scalameta" %% "scalameta" % V.scalameta
)
.aggregate(
`migrate-interface`,
`compiler-interface`,
migrate,
input,
output,
`sbt-plugin`,
`scalafix-input`,
`scalafix-output`,
`scalafix-rules`,
`scalafix-tests`
)

lazy val `migrate-interface` = project
.in(file("interfaces/migrate"))
.settings(
Expand Down Expand Up @@ -217,9 +236,10 @@ lazy val V = new {
val kindProjector = "0.13.3"
val coursierApi = "2.1.9"
val coursierInterface = "1.0.19"
val scalameta = "4.8.8"
val scalameta = "4.9.1"
val localSnapshotVersion = "0.7.0-SNAPSHOT"
// scala-steward:off
val zio = "1.0.18"
// scala-steward:on
}

0 comments on commit 69cde4e

Please sign in to comment.