-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix dependencies in .scala-steward.conf
- Loading branch information
1 parent
86a0571
commit 436c473
Showing
1 changed file
with
9 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,20 @@ | ||
updates.ignore = [ | ||
{ groupId = "com.typesafe", artifactId = "ssl-config-core" }, | ||
|
||
{ groupId = "com.typesafe.akka", artifactId = "akka-actor" }, | ||
{ groupId = "com.typesafe.akka", artifactId = "akka-actor-typed" }, | ||
{ groupId = "com.typesafe.akka", artifactId = "akka-discovery" }, | ||
{ groupId = "com.typesafe.akka", artifactId = "akka-slf4j" }, | ||
{ groupId = "com.typesafe.akka", artifactId = "akka-stream" }, | ||
{ groupId = "com.typesafe.akka", artifactId = "akka-stream-testkit" }, | ||
{ groupId = "com.typesafe.akka", artifactId = "akka-testkit" }, | ||
{ groupId = "com.typesafe.akka", artifactId = "akka-multi-node-testkit" }, | ||
|
||
{ groupId = "com.typesafe.akka", artifactId = "akka-http" }, | ||
{ groupId = "com.typesafe.akka", artifactId = "akka-http-core" }, | ||
|
||
# https://github.com/akka/akka-grpc/issues/1631 | ||
{ groupId = "com.google.protobuf", artifactId = "protobuf-java" } | ||
] | ||
|
||
updates.pin = [ | ||
|
||
# https://github.com/akka/akka-grpc/issues/1506 | ||
{ groupId = "org.eclipse.jgit", artifactId = "org.eclipse.jgit", version = "5." }, | ||
|
||
# https://github.com/akka/akka-grpc/issues/1661 | ||
{ groupId = "org.slf4j", artifactId = "slf4j-api", version = "1." } | ||
# logback 1.3 and 1.4 would bump sfl4j to 2.0.0 | ||
# http://mailman.qos.ch/pipermail/announce/2022/000177.html | ||
{ groupId = "ch.qos.logback", artifactId = "logback-classic", version = "1.2." } | ||
# Pin logback to v1.3.x because v1.4.x needs JDK11 | ||
{ groupId = "ch.qos.logback", version="1.3." } | ||
|
||
# Pin sbt-paradox to v0.9.x because 0.10.x needs JDK 11 | ||
{ groupId = "com.lightbend.paradox", artifactId = "sbt-paradox-project-info", version = "0.9." }, | ||
{ groupId = "com.lightbend.paradox", artifactId = "sbt-paradox", version = "0.9." } | ||
|
||
# Scala 3.3 is a LTS | ||
{ groupId = "org.scala-lang", artifactId = "scala3-library", version = "3.3." } | ||
] | ||
|
||
updatePullRequests = "always" |