-
Notifications
You must be signed in to change notification settings - Fork 40
/
.scala-steward.conf
30 lines (28 loc) · 1.66 KB
/
.scala-steward.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
updates.ignore = [
{ groupId = "org.apache.pekko", artifactId = "pekko-actor" },
{ groupId = "org.apache.pekko", artifactId = "pekko-actor-typed" },
{ groupId = "org.apache.pekko", artifactId = "pekko-stream" },
{ groupId = "org.apache.pekko", artifactId = "pekko-testkit" },
{ groupId = "org.apache.pekko", artifactId = "pekko-actor-testkit-typed" },
{ groupId = "org.apache.pekko", artifactId = "pekko-stream-testkit" },
{ groupId = "org.apache.pekko", artifactId = "pekko-multi-node-testkit" },
{ groupId = "org.apache.pekko", artifactId = "pekko-http" },
{ groupId = "com.lightbend.sbt", artifactId = "sbt-java-formatter" }
]
updates.pin = [
# pin to jackson version used in pekko-core
{ groupId = "com.fasterxml.jackson.core", version = "2.17." },
{ groupId = "com.fasterxml.jackson.dataformat", version = "2.17." },
# https://github.com/akka/akka-http/pull/3995#issuecomment-1009951997
{ groupId = "org.scala-lang.modules", artifactId = "scala-xml", version = "1." },
# https://github.com/akka/akka-http/pull/3996#issuecomment-1009953070
{ groupId = "org.specs2", artifactId = "specs2-core", version = "4.10." },
# https://github.com/akka/akka-http/pull/4080#issuecomment-1074853622
{ groupId = "com.github.ben-manes.caffeine", artifactId = "caffeine", version = "2.9." },
# 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." }
]
updatePullRequests = "always"