-
Notifications
You must be signed in to change notification settings - Fork 595
/
Copy path.scala-steward.conf
27 lines (24 loc) · 1.35 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
# Only send PRs on Monday morning
pullRequests.frequency = "0 0 ? * 1"
commits.message = "bump: update ${artifactName} from ${currentVersion} to ${nextVersion}"
updates.ignore = [
{ groupId = "com.typesafe.akka", artifactId = "akka-actor" },
{ groupId = "com.typesafe.akka", artifactId = "akka-actor-typed" },
{ groupId = "com.typesafe.akka", artifactId = "akka-stream" },
{ groupId = "com.typesafe.akka", artifactId = "akka-testkit" },
{ groupId = "com.typesafe.akka", artifactId = "akka-actor-testkit-typed" },
{ groupId = "com.typesafe.akka", artifactId = "akka-stream-testkit" },
{ groupId = "com.typesafe.akka", artifactId = "akka-multi-node-testkit" },
{ groupId = "com.typesafe.akka", artifactId = "akka-http" },
]
updates.pin = [
# Align with Scalatest dependency from Akka TestKit does
{ groupId = "org.scalatest", artifactId = "scalatest", version = "3.2." },
# align with Akka jackson version
{ groupId = "com.fasterxml.jackson.core", version = "2.17." },
{ groupId = "com.fasterxml.jackson.dataformat", version = "2.17." },
# 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." },
]