From 87c8cc4be9eae11ac715aa37295bf8e9cf5b1805 Mon Sep 17 00:00:00 2001 From: Desmond Vehar Date: Sun, 1 Sep 2019 15:18:56 -0700 Subject: [PATCH] Update artifact information in README.md - Use a more specific artifact search - For just com.netflix.ribbon:ribbon we can use https://search.maven.org/search?q=g:com.netflix.ribbon%20AND%20a:ribbon - For all artifacts under com.netflix.ribbon we can use https://search.maven.org/search?q=g:com.netflix.ribbon - Use the lastest (2.7.17) com.netflix.ribbon:ribbon version in the decalred dependency example --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index df78a150..ceda1b7e 100644 --- a/README.md +++ b/README.md @@ -8,13 +8,13 @@ Ribbon is a client side IPC library that is battle-tested in cloud. It provides * Multiple protocol (HTTP, TCP, UDP) support in an asynchronous and reactive model * Caching and batching -To get ribbon binaries, go to [maven central](http://search.maven.org/#search%7Cga%7C1%7Cribbon). Here is an example to add dependency in Maven: +To get ribbon binaries, go to [maven central](https://search.maven.org/search?q=g:com.netflix.ribbon%20AND%20a:ribbon). Here is an example to add the dependency in Maven: ```xml com.netflix.ribbon ribbon - 2.2.2 + 2.7.17 ```