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

Fix updating of scala versions with scala steward #332

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions .scala-steward.conf
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Latest version of jgit which was compiled with JDK 8 which this project targets
updates.pin = [{ groupId = "org.eclipse.jgit", version = "5.13.0.202109080827-r" }]
updates.pin = [
# Latest version of jgit which was compiled with JDK 8 which this project targets
{ groupId = "org.eclipse.jgit", version = "5.13.0.202109080827-r" },
# Only do updates for Scala 2.12 series
{ groupId = "org.scala-lang", artifactId = "scala-library", version = "2.12." }
]

updates.ignore = [
{ groupId = "org.eclipse.jgit" }
]
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ inThisBuild(
licenses := Seq(
"Apache-2.0" -> url("http://www.apache.org/license/LICENSE-2.0")
),
scalaVersion := "2.12.17", // scala-steward:off
scalaVersion := "2.12.20",
versionScheme := Some("semver-spec")
)
)
Expand Down
Loading