pekko/.scala-steward.conf

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
1.4 KiB
Text
Raw Normal View History

updates.pin = [
2024-05-07 14:28:52 +01:00
{ groupId = "com.fasterxml.jackson.core", version = "2.17." }
2024-01-27 22:24:18 +01:00
# Pin logback to v1.3.x because v1.4.x needs JDK11
{ groupId = "ch.qos.logback", version="1.3." }
2024-02-18 05:55:59 +01:00
# 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." }
2024-04-05 17:56:50 +02:00
# Scala 3.3 is a LTS
{ groupId = "org.scala-lang", artifactId = "scala3-library", version = "3.3." }
# protobuf 4 is not yet well supported
{ groupId = "com.google.protobuf", artifactId = "protobuf-java", version = "3." }
# aeron 1.46 requires Java 17
{ groupId = "io.aeron", version = "1.45." }
]
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" }
{ 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" }
2021-04-13 14:14:49 +02:00
{ groupId = "com.typesafe", artifactId = "ssl-config-core" }
{ groupId = "org.agrona", artifactId = "agrona" }
{ groupId = "org.mockito", artifactId = "mockito-core" }
2023-10-23 16:02:59 +08:00
{ groupId = "com.lightbend.sbt", artifactId = "sbt-java-formatter" }
]
2023-10-13 09:16:26 -03:00
updatePullRequests = "always"