forked from playframework/playframework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.scala-steward.conf
55 lines (52 loc) · 3.79 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
pullRequests.frequency = "@monthly"
commits.message = "${artifactName} ${nextVersion} (was ${currentVersion})"
updates.ignore = [
// explicit updates
{ groupId = "org.scalameta", artifactId = "scalafmt-core" },
// these will get updated along with akka-actor, so no need to update them separately
{ groupId = "com.typesafe.akka", artifactId = "akka-actor-testkit-typed" },
{ groupId = "com.typesafe.akka", artifactId = "akka-actor-typed" },
{ groupId = "com.typesafe.akka", artifactId = "akka-cluster-sharding-typed" },
{ groupId = "com.typesafe.akka", artifactId = "akka-serialization-jackson" },
{ groupId = "com.typesafe.akka", artifactId = "akka-slf4j" },
{ groupId = "com.typesafe.akka", artifactId = "akka-stream" },
{ groupId = "com.typesafe.akka", artifactId = "akka-testkit" },
// this will get updated along with akka-http-core, so no need to update it separately
{ groupId = "com.typesafe.akka", artifactId = "akka-http2-support" },
// 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" },
// these will get updated along with selenium-api, so no need to update them separately
{ groupId = "org.seleniumhq.selenium", artifactId = "selenium-support" },
{ groupId = "org.seleniumhq.selenium", artifactId = "selenium-firefox-driver" }
]
updates.pin = [
{ groupId = "com.typesafe.akka", artifactId = "akka-actor", version = "2.6." },
{ groupId = "com.typesafe.akka", artifactId = "akka-http-core", version = "10.1." },
// HikariCP 5+ requires Java 11. See https://github.com/brettwooldridge/HikariCP/issues/1816#issuecomment-890255579
{ groupId = "com.zaxxer", artifactId = "HikariCP", version = "4." },
// caffeine 3+ requires Java 11. See https://github.com/ben-manes/caffeine/releases/tag/v3.0.0
{ groupId = "com.github.ben-manes.caffeine", version = "2." },
// FluentLenium 4+ requires Java 11.
// See https://github.com/FluentLenium/FluentLenium/releases/tag/v4.0.0 and https://fluentlenium.com/quickstart/#choose-the-right-version
{ groupId = "org.fluentlenium", version = "3." },
// FluentLenium 3 only works with Selenium 3
{ groupId = "org.seleniumhq.selenium", artifactId = "selenium-api", version = "3." },
// Selenium 3 is only compatible with htmlunit-driver 2, see https://github.com/SeleniumHQ/htmlunit-driver/releases/tag/2.56.0
{ groupId = "org.seleniumhq.selenium", artifactId = "htmlunit-driver", version = "2." },
// Hibernate Validator 7.0 is jakarta.validation based, 6.2 is javax.validation based
// and the Spring libraries we use still depends on Hibernate Validator 6.x
// See https://github.com/playframework/playframework/pull/10616#issuecomment-758273638
{ groupId = "org.hibernate.validator", artifactId = "hibernate-validator", version = "6." },
// Apache Derby above 10.14 requires Java 9+. See https://db.apache.org/derby/derby_downloads.html
{ groupId = "org.apache.derby", artifactId = "derby", version = "10.14." }
]
updatePullRequests = never