From 3ae3d73c91b0b6ed264e0c5cfeefd370ea5baafe Mon Sep 17 00:00:00 2001 From: David Nault Date: Tue, 27 May 2025 13:27:13 -0700 Subject: [PATCH] Update snapshot repository info Motivation ---------- Now that we've migrated from OSSRH to Central Portal, snapshots are in a different location. --- .../pages/sdk-full-installation.adoc | 21 ++++++++++++------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/modules/project-docs/pages/sdk-full-installation.adoc b/modules/project-docs/pages/sdk-full-installation.adoc index 0997f18f..0ae53f59 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() } } }