Skip to content
This repository has been archived by the owner on Jul 27, 2023. It is now read-only.

README: fix JAR URL #279

Merged
merged 1 commit into from
Dec 4, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Installation

### Note

As of `1.0.0`, this library requires Java 8.
As of `1.0.0`, this library requires Java 8.

### Note

Expand All @@ -22,7 +22,7 @@ In 0.11.X and 0.12.x, the Consul JAR is a shaded JAR, with most dependencies inc

### Bintray:

Grab the latest binary (1.0.0) [here](http://dl.bintray.com/orbitz/consul-client/com/orbitz/consul/consul-client/0.13.11/#consul-client-0.13.11.jar).
Grab the latest binary (1.0.0) [here](http://dl.bintray.com/orbitz/consul-client/com/orbitz/consul/consul-client/1.0.0/#consul-client-1.0.0.jar).

### Gradle:

Expand Down Expand Up @@ -63,7 +63,7 @@ dependencies {
Basic Usage
-----------

### Example 1: Register and check your service in with Consul.
### Example 1: Register and check your service in with Consul.

```java
Consul consul = Consul.builder().build(); // connect to Consul on localhost
Expand Down Expand Up @@ -99,7 +99,7 @@ String value = kvClient.getValueAsString("foo").get(); // bar

### Example 4: Blocking call for value.

A blocking is used to wait for a potential changes in the key value store.
A blocking is used to wait for a potential changes in the key value store.

```java
// Set a read timeout to a larger value then we will block.
Expand All @@ -121,7 +121,7 @@ ConsulResponseCallback<Optional<Value>> callback = new ConsulResponseCallback<Op
Value v = consulResponse.getResponse().get();
LOGGER.info("Value is: {}", v.getValue());
}

index.set(consulResponse.getIndex());
watch();
}
Expand Down Expand Up @@ -158,7 +158,7 @@ svHealth.addListener(new ConsulCache.Listener<HostAndPort, ServiceHealth>() {
}
});
svHealth.start();
```
```

### Example 6: Find Raft peers.

Expand Down