Skip to content

Commit

Permalink
Changed version to 1.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
trinopoty committed Dec 3, 2019
1 parent 171019a commit f29f7ac
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 23 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Add the following dependency to your `pom.xml`.
<dependency>
<groupId>io.socket</groupId>
<artifactId>engine.io-server</artifactId>
<version>1.3.3</version>
<version>1.3.4</version>
</dependency>
</dependencies>
```
Expand All @@ -28,7 +28,7 @@ Add the following dependency to your `pom.xml`.
Add it as a gradle dependency in `build.gradle`.

```groovy
compile ('io.socket:engine.io-server:1.3.3')
compile ('io.socket:engine.io-server:1.3.4')
```

#### Engine.IO Protocol 1.x suppport
Expand Down
4 changes: 2 additions & 2 deletions docs/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Add the following dependency to your ``pom.xml``.::
<dependency>
<groupId>io.socket</groupId>
<artifactId>engine.io-server</artifactId>
<version>1.3.3</version>
<version>1.3.4</version>
</dependency>
</dependencies>

Expand All @@ -25,7 +25,7 @@ Gradle

Add it as a gradle dependency in ``build.gradle``.::

compile ('io.socket:engine.io-server:1.3.3')
compile ('io.socket:engine.io-server:1.3.4')

.. _install-jetty-ws-adapter:

Expand Down
7 changes: 1 addition & 6 deletions engine.io-server-jetty/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.socket</groupId>
<artifactId>engine.io-server-bom</artifactId>
<version>${revision}</version>
<version>1.3.4</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand All @@ -14,15 +14,10 @@
<name>engine.io-server-jetty</name>
<description>Jetty WebSocket adapter module.</description>

<properties>
<revision>1.3.3</revision>
</properties>

<dependencies>
<dependency>
<groupId>io.socket</groupId>
<artifactId>engine.io-server</artifactId>
<version>${revision}</version>
</dependency>

<dependency>
Expand Down
5 changes: 1 addition & 4 deletions engine.io-server-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.socket</groupId>
<artifactId>engine.io-server-bom</artifactId>
<version>${revision}</version>
<version>1.3.4</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand All @@ -14,7 +14,6 @@
<description>This module contains integration tests.</description>

<properties>
<revision>1.3.3</revision>
<maven.deploy.skip>true</maven.deploy.skip>
<maven.install.skip>true</maven.install.skip>
</properties>
Expand Down Expand Up @@ -66,13 +65,11 @@
<dependency>
<groupId>io.socket</groupId>
<artifactId>engine.io-server</artifactId>
<version>${revision}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.socket</groupId>
<artifactId>engine.io-server-jetty</artifactId>
<version>${revision}</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
6 changes: 1 addition & 5 deletions engine.io-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.socket</groupId>
<artifactId>engine.io-server-bom</artifactId>
<version>${revision}</version>
<version>1.3.4</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand All @@ -14,10 +14,6 @@
<name>engine.io-server</name>
<description>Engine.IO server library for Java</description>

<properties>
<revision>1.3.3</revision>
</properties>

<dependencies>
<dependency>
<groupId>io.socket</groupId>
Expand Down
7 changes: 3 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>io.socket</groupId>
<artifactId>engine.io-server-bom</artifactId>
<version>${revision}</version>
<version>1.3.4</version>
<packaging>pom</packaging>
<name>engine.io</name>
<description>Engine.IO server library for Java</description>
Expand All @@ -19,7 +19,6 @@
</modules>

<properties>
<revision>1.3.3</revision>
<github.global.server>github</github.global.server>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
Expand Down Expand Up @@ -63,12 +62,12 @@
<dependency>
<groupId>io.socket</groupId>
<artifactId>engine.io-server</artifactId>
<version>${revision}</version>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.socket</groupId>
<artifactId>engine.io-server-jetty</artifactId>
<version>${revision}</version>
<version>${project.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
Expand Down

0 comments on commit f29f7ac

Please sign in to comment.