Skip to content
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
17 changes: 3 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,34 +44,23 @@ The compiled library is available in two ways:

### Maven

The pusher-java-client is available in Maven Central, however one of its dependencies is hosted on [Clojars.org](http://clojars.org) so you will need to add it to your repositories list.
The pusher-java-client is available in Maven Central.

```xml
<repositories>
<repository>
<id>clojars.org</id>
<url>http://clojars.org/repo</url>
</repository>
</repositories>

<dependencies>
<dependency>
<groupId>com.pusher</groupId>
<artifactId>pusher-java-client</artifactId>
<version>1.3.0</version>
<version>1.4.0</version>
</dependency>
</dependencies>
```

### Gradle

```groovy
repositories {
maven { url 'http://clojars.org/repo' }
}

dependencies {
compile 'com.pusher:pusher-java-client:1.3.0'
compile 'com.pusher:pusher-java-client:1.4.0'
}
```

Expand Down