2024-01-06 20:07:03 +01:00
|
|
|
updates.pin = [
|
2024-09-21 22:43:58 +01:00
|
|
|
# Scala 3.3 is the latest LTS version
|
2024-04-05 17:56:50 +02:00
|
|
|
{ groupId = "org.scala-lang", artifactId = "scala3-library", version = "3.3." }
|
2025-08-31 14:26:51 +01:00
|
|
|
# sbt-assembly 2.3 causes build issues (https://github.com/apache/pekko/pull/1744)
|
|
|
|
|
{ groupId = "com.eed3si9n", artifactId = "sbt-assembly", version = "2.2." }
|
2024-01-06 20:07:03 +01:00
|
|
|
]
|
|
|
|
|
|
2019-09-26 16:50:02 +02:00
|
|
|
updates.ignore = [
|
2021-04-13 14:14:49 +02:00
|
|
|
// these will get updated along with jackson-core, so no need to update them
|
|
|
|
|
// separately
|
|
|
|
|
{ groupId = "com.fasterxml.jackson.core", artifactId = "jackson-annotations" }
|
|
|
|
|
{ groupId = "com.fasterxml.jackson.core", artifactId = "jackson-databind" }
|
2024-04-06 11:37:00 +02:00
|
|
|
{ groupId = "com.fasterxml.jackson.module" }
|
|
|
|
|
{ groupId = "com.fasterxml.jackson.dataformat" }
|
|
|
|
|
{ groupId = "com.fasterxml.jackson.datatype" }
|
2024-05-07 14:28:52 +01:00
|
|
|
{ groupId = "com.fasterxml.jackson.jaxrs" }
|
2024-12-17 00:50:34 +01:00
|
|
|
# other ignored updates
|
2023-10-23 16:02:59 +08:00
|
|
|
{ groupId = "com.lightbend.sbt", artifactId = "sbt-java-formatter" }
|
2019-09-26 16:50:02 +02:00
|
|
|
]
|
|
|
|
|
|
2023-10-13 09:16:26 -03:00
|
|
|
updatePullRequests = "always"
|