From 136036534bfa57045b522701b25d4cd8414c44e8 Mon Sep 17 00:00:00 2001 From: PJ Fanning Date: Sun, 3 Mar 2024 23:50:17 +0100 Subject: [PATCH] fix build interpolation (#234) --- build.sbt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.sbt b/build.sbt index 603e7532..f4bbb835 100644 --- a/build.sbt +++ b/build.sbt @@ -239,11 +239,11 @@ lazy val docs = Project(id = "docs", base = file("docs")) "grpc.version" -> Dependencies.Versions.grpc, "project.url" -> "https://pekko.apache.org/docs/pekko-grpc/current/", "canonical.base_url" -> "https://pekko.apache.org/docs/pekko-grpc/current", - "scaladoc.scala.base_url" -> s"https://www.scala-lang.org/api/current/", + "scaladoc.scala.base_url" -> "https://www.scala-lang.org/api/current/", // Apache Pekko "extref.pekko.base_url" -> s"https://pekko.apache.org/docs/pekko/${Dependencies.Versions.pekkoBinary}/%s", - "scaladoc.pekko.base_url" -> "https://pekko.apache.org/docs/pekko/${Dependencies.Versions.pekkoBinary}/", - "javadoc.pekko.base_url" -> "https://pekko.apache.org/docs/pekko/${Dependencies.Versions.pekkoBinary}/", + "scaladoc.pekko.base_url" -> s"https://pekko.apache.org/docs/pekko/${Dependencies.Versions.pekkoBinary}/", + "javadoc.pekko.base_url" -> s"https://pekko.apache.org/docs/pekko/${Dependencies.Versions.pekkoBinary}/", // Apache Pekko HTTP "extref.pekko-http.base_url" -> s"https://pekko.apache.org/docs/pekko-http/${Dependencies.Versions.pekkoHttpBinary}/%s", "scaladoc.pekko-http.base_url" -> s"https://pekko.apache.org/api/pekko-http/${Dependencies.Versions.pekkoHttpBinary}/",