Skip to content

Commit 32327e4

Browse files
Merge pull request #119 from gokhanbarisaker/0.8.2
0.8.2
2 parents 748e97b + ed2c929 commit 32327e4

4 files changed

Lines changed: 37 additions & 15 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Tests will run against sandbox by default.
5050
Download [the latest JAR](https://github.com/ably/ably-java/releases) or grab via Gradle:
5151

5252
```groovy
53-
compile 'io.ably:ably-java:0.8.1'
53+
compile 'io.ably:ably-java:0.8.2'
5454
```
5555

5656
and add following repo for a sub-dependency,

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ allprojects {
1717
}
1818

1919
subprojects {
20-
version = '0.8.1'
20+
version = '0.8.2'
2121
description = """Ably java client library"""
2222
}

lib/maven.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ apply plugin: 'signing'
44

55
def groupId = "io.ably"
66
def artifactId = "ably-java"
7-
def version = "0.8.1"
87
def localReleaseDest = "${buildDir}/release/${version}"
98

109
allprojects {
@@ -57,7 +56,7 @@ uploadArchives {
5756
licenses {
5857
license {
5958
name 'The Apache Software License, Version 2.0'
60-
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
59+
url 'https://raw.github.com/ably/ably-java/master/LICENSE'
6160
distribution 'repo'
6261
}
6362
}

pom.xml

Lines changed: 34 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>io.ably</groupId>
66
<artifactId>ably-java</artifactId>
7-
<version>0.8.1</version>
7+
<version>0.8.2</version>
88
<name>Ably java client library</name>
99
<description>A Java Realtime and REST client library for [Ably.io](https://www.ably.io), the realtime messaging service.</description>
1010
<inceptionYear>2015</inceptionYear>
@@ -29,30 +29,53 @@
2929
<url>https://github.com/ably/ably-java/issues</url>
3030
</issueManagement>
3131
<dependencies>
32-
<dependency>
33-
<groupId>org.msgpack</groupId>
34-
<artifactId>msgpack-core</artifactId>
35-
<version>0.7.0-p9</version>
36-
</dependency>
3732
<dependency>
3833
<groupId>org.java-websocket</groupId>
3934
<artifactId>Java-WebSocket</artifactId>
4035
<version>1.3.1</version>
36+
<scope>compile</scope>
37+
</dependency>
38+
<dependency>
39+
<groupId>junit</groupId>
40+
<artifactId>junit</artifactId>
41+
<version>4.12</version>
42+
<scope>test</scope>
43+
</dependency>
44+
<dependency>
45+
<groupId>org.hamcrest</groupId>
46+
<artifactId>hamcrest-all</artifactId>
47+
<version>1.3</version>
48+
<scope>test</scope>
4149
</dependency>
4250
<dependency>
4351
<groupId>com.google.code.gson</groupId>
4452
<artifactId>gson</artifactId>
45-
<version>2.4</version>
53+
<version>2.5</version>
54+
<scope>compile</scope>
4655
</dependency>
4756
<dependency>
48-
<groupId>junit</groupId>
49-
<artifactId>junit</artifactId>
50-
<version>4.12</version>
57+
<groupId>org.msgpack</groupId>
58+
<artifactId>msgpack-core</artifactId>
59+
<version>0.8.2</version>
60+
<scope>compile</scope>
5161
</dependency>
5262
<dependency>
5363
<groupId>com.nanohttpd</groupId>
5464
<artifactId>nanohttpd</artifactId>
55-
<version>2.1.0</version>
65+
<version>2.2.0</version>
66+
<scope>test</scope>
67+
</dependency>
68+
<dependency>
69+
<groupId>org.nanohttpd</groupId>
70+
<artifactId>nanohttpd-nanolets</artifactId>
71+
<version>2.2.0</version>
72+
<scope>test</scope>
73+
</dependency>
74+
<dependency>
75+
<groupId>org.mockito</groupId>
76+
<artifactId>mockito-all</artifactId>
77+
<version>2.0.2-beta</version>
78+
<scope>test</scope>
5679
</dependency>
5780
</dependencies>
5881
</project>

0 commit comments

Comments
 (0)