forked from wvlet/airframe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.scala-steward.conf
30 lines (27 loc) · 922 Bytes
/
.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
buildRoots = [
".",
"airspec",
"sbt-airframe",
"examples/rx-demo/gallery",
"examples/rpc-examples/hello-rpc",
"examples/rpc-examples/rpc-scalajs"
]
pullRequests.includeMatchedLabels = ".*-update"
updates.pin = [
# logback-core 1.3.x needs to be used for suporting Java8
{ groupId = "ch.qos.logback", artifactId="logback-core", version = "1.3." },
# Stick to Scala 3.3.x (LTS) versions
{ groupId = "org.scala-lang", artifactId="scala3-compiler", version = "3.3." },
{ groupId = "org.scala-lang", artifactId="scala3-library", version = "3.3." },
{ groupId = "org.scala-lang", artifactId="scala3-library_sjs1", version = "3.3." }
]
dependencyOverrides = [
{
dependency = { groupId = "com.chatwork", artifactId = "scala-ulid" },
pullRequests = { frequency = "90 days" }
},
{
dependency = { groupId = "software.amazon.awssdk" },
pullRequests = { frequency = "90 days" }
}
]