Skip to content

Commit

Permalink
Update pekko-sbt-paradox (#161)
Browse files Browse the repository at this point in the history
  • Loading branch information
mdedetrich committed Mar 12, 2024
1 parent bd74c38 commit 31e1952
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
6 changes: 6 additions & 0 deletions .scala-steward.conf
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
updates.pin = [
# 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." }
]

updates.ignore = [
// explicit updates
{ groupId = "org.apache.pekko" }
Expand Down
16 changes: 5 additions & 11 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* This file is part of the Apache Pekko project, which was derived from Akka.
*/

addSbtPlugin("com.github.sbt" % "sbt-native-packager" % "1.9.9")
addSbtPlugin("com.github.sbt" % "sbt-native-packager" % "1.9.16")

addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.10.0")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")
Expand All @@ -21,14 +21,8 @@ addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "1.1.3")

// Documentation
addSbtPlugin("com.github.sbt" % "sbt-unidoc" % "0.5.0")
addSbtPlugin("com.typesafe.sbt" % "sbt-site" % "1.4.1")
addSbtPlugin(("com.github.sbt" % "sbt-site-paradox" % "1.5.0").excludeAll(
"com.lightbend.paradox", "sbt-paradox"))

// We have to deliberately use older versions of sbt-paradox because current Pekko sbt build
// only loads on JDK 1.8 so we need to bring in older versions of parboiled which support JDK 1.8
addSbtPlugin(("org.apache.pekko" % "pekko-sbt-paradox" % "1.0.0").excludeAll(
"com.lightbend.paradox", "sbt-paradox",
"com.lightbend.paradox" % "sbt-paradox-apidoc",
"com.lightbend.paradox" % "sbt-paradox-project-info"))
addSbtPlugin(("com.lightbend.paradox" % "sbt-paradox" % "0.9.2").force())
addSbtPlugin(("com.lightbend.paradox" % "sbt-paradox-apidoc" % "0.10.1").force())
addSbtPlugin(("com.lightbend.paradox" % "sbt-paradox-project-info" % "2.0.0").force())
resolvers += Resolver.ApacheMavenSnapshotsRepo
addSbtPlugin("org.apache.pekko" % "pekko-sbt-paradox" % "1.0.1-RC1+5-13892678-SNAPSHOT")

0 comments on commit 31e1952

Please sign in to comment.