Skip to content

Commit 3e84852

Browse files
authored
In preparation for 1.3.4 release
1 parent b9f47eb commit 3e84852

File tree

1 file changed

+9
-16
lines changed

1 file changed

+9
-16
lines changed

README.markdown

Lines changed: 9 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Java WebSockets
22
===============
3-
[![Build Status](https://travis-ci.org/marci4/Java-WebSocket-Dev.svg?branch=master)](https://travis-ci.org/marci4/Java-WebSocket-Dev) [![Clojars Project](https://img.shields.io/clojars/v/org.java-websocket/java-websocket.svg)](https://clojars.org/org.java-websocket/java-websocket)
4-
3+
[![Build Status](https://travis-ci.org/marci4/Java-WebSocket-Dev.svg?branch=master)](https://travis-ci.org/marci4/Java-WebSocket-Dev)
4+
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.java-websocket/Java-WebSocket/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.java-websocket/Java-WebSocket)
55

66
This repository contains a barebones WebSocket server and client implementation
77
written in 100% Java. The underlying classes are implemented `java.nio`, which allows for a
@@ -36,37 +36,30 @@ will create the javadoc of this library at ```doc/``` and build the library itse
3636
The ant targets are: ```compile```, ```jar```, ```doc``` and ```clean```
3737

3838
### Maven
39-
To use maven add this repository to your pom.xml:
40-
```xml
41-
<repository>
42-
<id>clojars.org</id>
43-
<url>http://clojars.org/repo</url>
44-
</repository>
45-
```
46-
Also add this dependency to your pom.xml:
39+
To use maven add this dependency to your pom.xml:
4740
```xml
4841
<dependency>
4942
<groupId>org.java-websocket</groupId>
50-
<artifactId>java-websocket</artifactId>
51-
<version>1.3.3</version>
43+
<artifactId>Java-WebSocket</artifactId>
44+
<version>1.3.4</version>
5245
</dependency>
5346
```
5447

5548
### Gradle
56-
To use Gradle add this repository to your repositories list :
49+
To use Gradle add the maven central repository to your repositories list :
5750
```xml
58-
maven { url "http://clojars.org/repo" }
51+
mavenCentral()
5952
```
6053
Then you can just add the latest version to your build.
6154
```xml
62-
compile "org.java-websocket:java-websocket:1.3.3"
55+
compile "org.java-websocket:Java-WebSocket:1.3.4"
6356
```
6457

6558

6659
### Leiningen
6760

6861
``` bash
69-
[org.java-websocket/java-websocket "1.3.3"]
62+
[org.java-websocket/java-websocket "1.3.4"]
7063
```
7164

7265
Running the Examples

0 commit comments

Comments
 (0)