From 54cc82043b412deec9133b110805f990b76e32d6 Mon Sep 17 00:00:00 2001 From: Artur Souza Date: Tue, 20 Oct 2020 13:09:17 -0700 Subject: [PATCH] Fixing repo config instructions. (#375) --- README.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 2cc78f258..889f6a289 100644 --- a/README.md +++ b/README.md @@ -39,20 +39,20 @@ For a Maven project, add the following to your `pom.xml` file: ```xml ... - - ... + + ... - - ossrh - https://oss.sonatype.org/content/repositories/snapshots - - ossrh - https://oss.sonatype.org/service/local/staging/deploy/maven2/ + oss-snapshots + https://oss.sonatype.org/content/repositories/snapshots + + + oss-release + https://oss.sonatype.org/content/repositories/releases/ - ... - + ... + ... @@ -100,7 +100,7 @@ repositories { } } maven { - url "https://oss.sonatype.org/service/local/staging/deploy/maven2/" + url "https://oss.sonatype.org/content/repositories/releases/" } } ...