Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
vgv committed Feb 6, 2015
1 parent 36cb9d0 commit 7b5c2d7
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
```

0 comments on commit 7b5c2d7

Please sign in to comment.