-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
4 additions
and
4 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,20 +1,20 @@ | ||
pullRequests.frequency = "@monthly" | ||
|
||
updates.ignore = [ | ||
// explicit updates | ||
{ groupId = "com.typesafe.akka" } | ||
# So we don't update the JDK version of sql server since it puts the JDK its built with in the artifact version | ||
{ groupId = "com.microsoft.sqlserver", artifactId = "mssql-jdbc" } | ||
] | ||
|
||
updatePullRequests = never | ||
|
||
updates.pin = [ | ||
# Pin logback to v1.3.x because v1.4.x needs JDK11 | ||
{ groupId = "ch.qos.logback", version="1.3." } | ||
# Pin h2 to v2.2 because v2.3 needs JDK11 | ||
{ groupId = "com.h2database", version="2.2." } | ||
# Pin sbt-paradox to v0.9.x because 0.10.x needs JDK 11 | ||
{ groupId = "com.lightbend.paradox", artifactId = "sbt-paradox-project-info", version = "0.9." } | ||
{ groupId = "com.lightbend.paradox", artifactId = "sbt-paradox", version = "0.9." } | ||
# Scala 3.3 is a LTS | ||
{ groupId = "org.scala-lang", artifactId = "scala3-library", version = "3.3." } | ||
# use mssql-jdbc Java 8 artifacts | ||
{ groupId = "com.microsoft.sqlserver", version = { contains = "jre8" } } | ||
] |