-
Notifications
You must be signed in to change notification settings - Fork 14
/
.scala-steward.conf
26 lines (24 loc) · 1.15 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
updates.pin = [
# https://github.com/apache/pekko/issues/1202
{groupId = "com.fasterxml.jackson.core", version = "2.17."}
# Scala 3.3 is a LTS
{ groupId = "org.scala-lang", artifactId = "scala3-library", version = "3.3." }
# Pin logback to v1.3.x because v1.4.x needs JDK11
{ groupId = "ch.qos.logback", version = "1.3." }
# Pin wiremock to v2.x because v3.x needs JDK11
{ groupId = "com.github.tomakehurst", artifactId = "2.", version="1.3." }
# Pin mockito to v4.x because v5.x needs JDK11
{ groupId = "org.mockito", artifactId = "mockito-core", version = "4." }
# jetty 10.+ requires Java 11 (only used in tests - via wiremock)
{ groupId = "org.eclipse.jetty", version = "9." }
]
updates.ignore = [
// these will get updated along with jackson-core, so no need to update them
// separately
{ groupId = "com.fasterxml.jackson.datatype", artifactId = "jackson-datatype-guava"}
{ groupId = "com.fasterxml.jackson.datatype", artifactId = "jackson-datatype-jdk8"}
# Gets updated in the same variable as the rest of jetty - avoid
# scala-steward opening multiple PRs:
{ groupId = "org.eclipse.jetty.http2" }
]
updatePullRequests = "always"