diff --git a/project/Paradox.scala b/project/Paradox.scala index 98aa3dac72f..2de4a049fd5 100644 --- a/project/Paradox.scala +++ b/project/Paradox.scala @@ -76,9 +76,6 @@ object Paradox { "fault-tolerance-sample.html")) val themeSettings = Seq( - // TODO: allow access to snapshots for pekko-sbt-paradox, remove when pekko is released - resolvers += Resolver.ApacheMavenSnapshotsRepo, - updateOptions := updateOptions.value.withLatestSnapshots(false), pekkoParadoxGithub := Some("https://github.com/apache/incubator-pekko")) // FIXME https://github.com/lightbend/paradox/issues/350 @@ -114,6 +111,5 @@ object Paradox { sourceGeneratorSettings ++ Seq( Compile / paradox / name := "Pekko", - resolvers += Resolver.jcenterRepo, ApidocPlugin.autoImport.apidocRootPackage := "org.apache.pekko") } diff --git a/project/plugins.sbt b/project/plugins.sbt index 1b9fff84f36..e7e17143b87 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -32,13 +32,9 @@ addSbtPlugin("org.mdedetrich" % "sbt-apache-sonatype" % "0.1.10") addSbtPlugin("com.github.reibitto" % "sbt-welcome" % "0.2.2") addSbtPlugin("com.github.sbt" % "sbt-license-report" % "1.5.0") -// allow access to snapshots for pekko-sbt-paradox -resolvers += Resolver.ApacheMavenSnapshotsRepo -updateOptions := updateOptions.value.withLatestSnapshots(false) - // 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" % "0.0.0+56-bff08336-SNAPSHOT").excludeAll( +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"))