-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix updating of scala versions with scala steward
- Loading branch information
1 parent
cef3625
commit 0d52e3b
Showing
2 changed files
with
8 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" } | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters