forked from lagom/lagom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.scala-steward.conf
28 lines (26 loc) · 1.47 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
pullRequests.frequency = "@monthly"
commits.message = "${artifactName} ${nextVersion} (was ${currentVersion})"
updates.ignore = [
// explicit updates
{ groupId = "com.typesafe.akka" },
{ groupId = "org.scalameta", artifactId = "scalafmt-core" },
// upgrade only together with Alpakka Kafka
{ groupId = "org.apache.kafka" },
// these will get updated along with jackson-databind, so no need to update them
// separately
{ groupId = "com.fasterxml.jackson.module", artifactId = "jackson-module-parameter-names" },
{ groupId = "com.fasterxml.jackson.module", artifactId = "jackson-module-paranamer" },
{ groupId = "com.fasterxml.jackson.module", artifactId = "jackson-module-scala" },
{ groupId = "com.fasterxml.jackson.core", artifactId = "jackson-annotations" },
{ groupId = "com.fasterxml.jackson.core", artifactId = "jackson-core" },
{ groupId = "com.fasterxml.jackson.dataformat", artifactId = "jackson-dataformat-cbor" },
{ groupId = "com.fasterxml.jackson.datatype", artifactId = "jackson-datatype-jsr310" },
{ groupId = "com.fasterxml.jackson.datatype", artifactId = "jackson-datatype-jdk8" },
{ groupId = "com.fasterxml.jackson.datatype", artifactId = "jackson-datatype-pcollections" },
{ groupId = "com.fasterxml.jackson.datatype", artifactId = "jackson-datatype-guava" }
]
updates.pin = [
# To be updated in tandem with upstream Akka
{ groupId = "com.fasterxml.jackson.core", artifactId = "jackson-databind", version = "2.11." }
]
updatePullRequests = false