From f48a88991e679d610d0da8f30ee2f9900ba9e49a Mon Sep 17 00:00:00 2001 From: Matthew de Detrich Date: Sat, 7 Jan 2023 13:31:41 +0100 Subject: [PATCH] Replace the akka paradox theme with the standard one --- build.sbt | 2 +- project/plugins.sbt | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index 46d27ebcd8..5894ab6d2c 100644 --- a/build.sbt +++ b/build.sbt @@ -238,7 +238,7 @@ lazy val docs = pekkoModule("docs") .settings(Paradox.settings) .settings(javacOptions += "-parameters") // for Jackson .enablePlugins( - AkkaParadoxPlugin, + ParadoxPlugin, PublishRsyncPlugin, NoPublish, ParadoxBrowse, diff --git a/project/plugins.sbt b/project/plugins.sbt index a70efe7e41..8c76537a71 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -15,7 +15,11 @@ addSbtPlugin("com.github.sbt" % "sbt-unidoc" % "0.5.0") addSbtPlugin("com.thoughtworks.sbt-api-mappings" % "sbt-api-mappings" % "3.0.2") addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.4.3") addSbtPlugin("io.spray" % "sbt-boilerplate" % "0.6.1") -addSbtPlugin("com.lightbend.akka" % "sbt-paradox-akka" % "0.44") +// 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("com.lightbend.paradox" % "sbt-paradox" % "0.9.2") +addSbtPlugin("com.lightbend.paradox" % "sbt-paradox-apidoc" % "0.10.1") +addSbtPlugin("com.lightbend.paradox" % "sbt-paradox-project-info" % "2.0.0") addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.7.0") addSbtPlugin("com.hpe.sbt" % "sbt-pull-request-validator" % "1.0.0") addSbtPlugin("net.bzzt" % "sbt-reproducible-builds" % "0.30")