From 7b5c2d783b8175d2e4b1bb0775a93891ff975264 Mon Sep 17 00:00:00 2001 From: Vasily Vasilkov Date: Fri, 6 Feb 2015 16:26:05 +0300 Subject: [PATCH] Update README.md --- README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/README.md b/README.md index 33a955bb..af099308 100644 --- a/README.md +++ b/README.md @@ -33,3 +33,18 @@ System.out.println("Datacenters: " + response.getValue()); * ./gradle build Gradle will compile sources, package classes (sources and javadocs too) into jars and run all tests. The build results will located in build/libs/ folder + +## Jars +Guys, right now I don't have enough time to upload jars into [Maven Central] (http://maven.apache.org/guides/mini/guide-central-repository-upload.html), but I update jars in our Ecwid Nexus repository every notable commit. You can add our repository in your Gradle build very easy +``` +repositories { + mavenCental() + maven { + url "http://nexus.ecwid.com/content/groups/public" + } +} +``` +and use consul-api +``` +compile "com.ecwid.consul:consul-api:1.0.5" +```