Skip to content

Commit

Permalink
Fix dependencies in .scala-steward.conf
Browse files Browse the repository at this point in the history
  • Loading branch information
mdedetrich committed Apr 6, 2024
1 parent c7d22c9 commit f43c199
Showing 1 changed file with 13 additions and 10 deletions.
23 changes: 13 additions & 10 deletions .scala-steward.conf
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
pullRequests.frequency = "@monthly"
commits.message = "${artifactName} ${nextVersion} (was ${currentVersion})"

updates.pin = [
{ groupId = "org.scalatest", artifactId = "scalatest", version = "3.1." }
updates.ignore = [
]

updates.ignore = [
{ groupId = "org.scalameta", artifactId = "scalafmt-core" },
{ groupId = "org.scalameta", artifactId = "sbt-scalafmt" }
{ groupId = "com.typesafe.akka" },
updates.pin = [

# 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 = fals
updatePullRequests = "always"

0 comments on commit f43c199

Please sign in to comment.