From 500642d5141088ea37d92b8415f16c008cb5b566 Mon Sep 17 00:00:00 2001 From: Andrzej Ludwikowski Date: Fri, 28 Jul 2023 13:37:17 +0300 Subject: [PATCH] docs: add repository info (#756) --- docs/src/main/paradox/overview.md | 10 ++++++++++ project/plugins.sbt | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/docs/src/main/paradox/overview.md b/docs/src/main/paradox/overview.md index 9a3ed1932..822c31390 100644 --- a/docs/src/main/paradox/overview.md +++ b/docs/src/main/paradox/overview.md @@ -18,6 +18,16 @@ See the full release history at [GitHub releases](https://github.com/akka/akka-p ## Module info +The Akka dependencies are available from Akka's library repository. To access them there, you need to configure the URL for this repository. + +@@repository [sbt,Maven,Gradle] { +id="akka-repository" +name="Akka library repository" +url="https://repo.akka.io/maven" +} + +Additionally, add the dependencies as below. + @@dependency [sbt,Maven,Gradle] { group=com.lightbend.akka artifact=akka-persistence-jdbc_$scala.binary.version$ diff --git a/project/plugins.sbt b/project/plugins.sbt index 768f702ee..829f61c3d 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -8,7 +8,7 @@ addSbtPlugin("com.lightbend.sbt" % "sbt-java-formatter" % "0.8.0") addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12") addSbtPlugin("com.dwijnand" % "sbt-dynver" % "4.1.1") // docs -addSbtPlugin("com.lightbend.akka" % "sbt-paradox-akka" % "0.49") +addSbtPlugin("com.lightbend.akka" % "sbt-paradox-akka" % "0.51") addSbtPlugin("com.github.sbt" % "sbt-site" % "1.5.0") addSbtPlugin("com.github.sbt" % "sbt-site-paradox" % "1.5.0") addSbtPlugin("com.github.sbt" % "sbt-unidoc" % "0.5.0")