Skip to content

Commit

Permalink
Use sbt-web 1.5.x despite staying on paradox 0.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mkurz committed Feb 25, 2024
1 parent 78ece6a commit bc6e64e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@ lazy val pekkoPlugin = project
addSbtPlugin(
// When updating the sbt-paradox version,
// remember to also update project/plugins.sbt
"com.lightbend.paradox" % "sbt-paradox" % "0.10.3"),
("com.lightbend.paradox" % "sbt-paradox" % "0.10.3").exclude("com.typesafe.sbt", "sbt-web")),
addSbtPlugin("com.github.sbt" % "sbt-web" % "1.5.4"), // sbt-paradox < 10.depends on old sbt-web 1.4.x, but we want a newer version
addSbtPlugin("com.lightbend.paradox" % "sbt-paradox-apidoc" % "1.1.0"),
addSbtPlugin("com.lightbend.paradox" % "sbt-paradox-project-info" % "3.0.1"),
addSbtPlugin("com.github.sbt" % "sbt-paradox-material-theme" % "0.7.0"),
Expand Down
5 changes: 3 additions & 2 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@

// When updating the sbt-paradox version,
// remember to also update build.sbt
addSbtPlugin("com.lightbend.paradox" % "sbt-paradox-theme" % "0.9.2")
addSbtPlugin("com.lightbend.paradox" % "sbt-paradox" % "0.9.2")
addSbtPlugin(("com.lightbend.paradox" % "sbt-paradox-theme" % "0.9.2").exclude("com.typesafe.sbt", "sbt-web"))
addSbtPlugin(("com.lightbend.paradox" % "sbt-paradox" % "0.9.2").exclude("com.typesafe.sbt", "sbt-web"))
addSbtPlugin("com.github.sbt" % "sbt-web" % "1.5.4") // sbt-paradox[-theme] 0.9.2 depends on old sbt-web 1.4.x, but we want a newer version
addSbtPlugin("com.github.sbt" % "sbt-dynver" % "5.0.1")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")
addSbtPlugin("org.mdedetrich" % "sbt-apache-sonatype" % "0.1.11")
Expand Down

0 comments on commit bc6e64e

Please sign in to comment.