From fb71d4bac52fef6a85b8251ed05799a94ae6981c Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Fri, 5 Apr 2024 12:30:34 +0100 Subject: [PATCH] Update README to reflect publication to Central Closes gh-76 --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e7692a6..1736e65 100644 --- a/README.md +++ b/README.md @@ -108,8 +108,8 @@ Jenkins is detected by looking for an environment variable named `JENKINS_URL`. ## Using the conventions -The conventions are published to https://repo.spring.io. -Depending on the version you wish to use, they will be availble from the `snapshot` or `release` repository. +Releases of the conventions are published to Maven Central. +Snapshots are published to https://repo.spring.io/snapshot. The first step in using the conventions is to make the necessary repository available for plugin resolution. This is done by configuring a plugin management repository in `settings.gradle`, as shown in the following example: @@ -118,7 +118,7 @@ This is done by configuring a plugin management repository in `settings.gradle`, pluginManagement { repositories { gradlePluginPortal() - maven { url 'https://repo.spring.io/release' } + mavenCentral() } } ```