Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Automate scalameta updates #462

Merged
merged 1 commit into from Mar 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
// for scala-steward
// for scala-steward
publish / skip := true,
// silent the intransitive dependency warning
publishMavenStyle := false,

maybe? We do it in Metals https://github.com/scalameta/metals/blob/main/build.sbt#L771

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
}