-
Notifications
You must be signed in to change notification settings - Fork 195
Expand file tree
/
Copy path.scala-steward.conf
More file actions
28 lines (26 loc) · 1.17 KB
/
.scala-steward.conf
File metadata and controls
28 lines (26 loc) · 1.17 KB
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
updates.pin = [
# https://github.com/apache/pekko/issues/2329
{ groupId = "io.aeron", version = "1.48." },
# Scala 3.3 is the latest LTS version
{ groupId = "org.scala-lang", artifactId = "scala3-library", version = "3.3." }
# sbt-assembly 2.3 causes build issues (https://github.com/apache/pekko/pull/1744)
{ groupId = "com.eed3si9n", artifactId = "sbt-assembly", version = "2.2." }
# agrona major+minor version should match the one brought
# in by aeron
{ groupId = "org.agrona", artifactId = "agrona", version = "2.2." }
]
updates.ignore = [
// these will get updated along with jackson-core, so no need to update them
// separately
{ groupId = "com.fasterxml.jackson.core", artifactId = "jackson-databind" }
{ groupId = "com.fasterxml.jackson.module" }
{ groupId = "com.fasterxml.jackson.dataformat" }
{ groupId = "com.fasterxml.jackson.datatype" }
{ groupId = "com.fasterxml.jackson.jaxrs" }
{ groupId = "tools.jackson.core", artifactId = "jackson-databind" }
{ groupId = "tools.jackson.module" }
{ groupId = "tools.jackson.dataformat" }
{ groupId = "tools.jackson.datatype" }
{ groupId = "tools.jackson.jaxrs" }
]
updatePullRequests = "always"