From 4e379f171947566c155924681ae32f33cd1ccca8 Mon Sep 17 00:00:00 2001 From: Rossen Stoyanchev Date: Mon, 12 Oct 2020 18:07:45 +0100 Subject: [PATCH] Correct repository link in README.md Signed-off-by: Rossen Stoyanchev --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 99b11babc..4f36f6a11 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ Example: ```groovy repositories { - mavenCentral() + mavenCentral() maven { url 'https://repo.spring.io/milestone' } // Reactor milestones (if needed) } dependencies { @@ -38,8 +38,8 @@ Example: ```groovy repositories { - maven { url 'https://oss.jfrog.org/oss-snapshot-local' } - maven { url 'https://repo.spring.io/milestone' } // Reactor snapshots (if needed) + maven { url 'https://oss.jfrog.org/oss-snapshot-local' } + maven { url 'https://repo.spring.io/snapshot' } // Reactor snapshots (if needed) } dependencies { implementation 'io.rsocket:rsocket-core:1.0.3-SNAPSHOT'