diff --git a/docs/src/main/paradox/project/links.md b/docs/src/main/paradox/project/links.md index 2dfed21f68..ef466f31c1 100644 --- a/docs/src/main/paradox/project/links.md +++ b/docs/src/main/paradox/project/links.md @@ -2,7 +2,7 @@ ## Source Code -Pekko uses Git and is hosted at [Github apache/pekko](https://github.com/apache/incubator-pekko). +Pekko uses Git and is hosted at [Github apache/incubator-pekko](https://github.com/apache/incubator-pekko). ## Releases Repository @@ -11,7 +11,7 @@ All Pekko releases are published via Sonatype to Maven Central, see ## Snapshots Repository -Snapshot builds are available at [https://oss.sonatype.org/content/repositories/snapshots/org/apache/pekko/](https://oss.sonatype.org/content/repositories/snapshots/org/apache/pekko/). All Pekko modules that belong to the same build have the same version. +Snapshot builds are available at [https://repository.apache.org/content/groups/snapshots/org/apache/pekko/](https://repository.apache.org/content/groups/snapshots/org/apache/pekko/). All Pekko modules that belong to the same build have the same version. @@@ warning @@ -24,14 +24,14 @@ The use of Pekko SNAPSHOTs, nightlies and milestone releases is discouraged unle Make sure that you add the repository to the sbt resolvers: ``` -resolvers ++= "Apache Pekko Snapshots" at "https://nightlies.apache.org/pekko/snapshots" +resolvers ++= "Apache Pekko Snapshots" at "https://repository.apache.org/content/groups/snapshots" ``` Define the library dependencies with the complete version. For example: @@@vars ``` -libraryDependencies += "org.apache.pekko" % "pekko-remote_$scala.binary.version$" % "2.6.14+72-53943d99-SNAPSHOT" +libraryDependencies += "org.apache.pekko" % "pekko-remote_$scala.binary.version$" % "0.0.0+26565-a07a08f6-SNAPSHOT" ``` @@@ @@ -43,7 +43,7 @@ Make sure that you add the repository to the Maven repositories in pom.xml: apache-pekko-snapshots - https://nightlies.apache.org/pekko/snapshots + https://repository.apache.org/content/groups/snapshots default true @@ -60,7 +60,7 @@ Define the library dependencies with the timestamp as version. For example: org.apache.pekko pekko-remote_$scala.binary.version$ - 2.6.14+72-53943d99-SNAPSHOT + 0.0.0+26565-a07a08f6-SNAPSHOT ```