You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pekko.apache.org by jr...@apache.org on 2023/02/13 09:26:30 UTC

[incubator-pekko] branch main updated: change snapshot repo in docs (#170)

This is an automated email from the ASF dual-hosted git repository.

jrudolph pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-pekko.git


The following commit(s) were added to refs/heads/main by this push:
     new bd3d3b39a3 change snapshot repo in docs (#170)
bd3d3b39a3 is described below

commit bd3d3b39a3b2bbf1c9a5a29570b67ac961882484
Author: PJ Fanning <pj...@users.noreply.github.com>
AuthorDate: Mon Feb 13 10:26:25 2023 +0100

    change snapshot repo in docs (#170)
---
 docs/src/main/paradox/project/links.md | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

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:
 <repositories>
   <repository>
     <id>apache-pekko-snapshots</id>
-    <url>https://nightlies.apache.org/pekko/snapshots</url>
+    <url>https://repository.apache.org/content/groups/snapshots</url>
     <layout>default</layout>
     <snapshots>
       <enabled>true</enabled>
@@ -60,7 +60,7 @@ Define the library dependencies with the timestamp as version. For example:
   <dependency>
     <groupId>org.apache.pekko</groupId>
     <artifactId>pekko-remote_$scala.binary.version$</artifactId>
-    <version>2.6.14+72-53943d99-SNAPSHOT</version>
+    <version>0.0.0+26565-a07a08f6-SNAPSHOT</version>
   </dependency>
 </dependencies>
 ```


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pekko.apache.org
For additional commands, e-mail: commits-help@pekko.apache.org