diff --git a/modules/project-docs/pages/sdk-full-installation.adoc b/modules/project-docs/pages/sdk-full-installation.adoc index 0997f18..0ae53f5 100644 --- a/modules/project-docs/pages/sdk-full-installation.adoc +++ b/modules/project-docs/pages/sdk-full-installation.adoc @@ -88,7 +88,7 @@ or 2.13: [snapshots] == Using a Snapshot Version -Couchbase publishes pre-release snapshot artifacts to the Sonatype OSS Snapshot Repository. +Couchbase publishes pre-release snapshot artifacts to the Central Portal Snapshots Repository. If you wish to use a snapshot version, you'll need to tell your build tool about this repository. [{tabs}] @@ -100,12 +100,17 @@ Maven:: [source,xml] ---- - - sonatype-snapshots - https://oss.sonatype.org/content/repositories/snapshots - false - true - + + Central Portal Snapshots + central-portal-snapshots + https://central.sonatype.com/repository/maven-snapshots/ + + false + + + true + + ---- -- @@ -118,7 +123,7 @@ Gradle (Groovy):: repositories { mavenCentral() maven { - url "https://oss.sonatype.org/content/repositories/snapshots" + url "https://central.sonatype.com/repository/maven-snapshots/" mavenContent { snapshotsOnly() } } }