|
4 | 4 | <modelVersion>4.0.0</modelVersion> |
5 | 5 | <groupId>io.ably</groupId> |
6 | 6 | <artifactId>ably-java</artifactId> |
7 | | - <version>0.8.1</version> |
| 7 | + <version>0.8.2</version> |
8 | 8 | <name>Ably java client library</name> |
9 | 9 | <description>A Java Realtime and REST client library for [Ably.io](https://www.ably.io), the realtime messaging service.</description> |
10 | 10 | <inceptionYear>2015</inceptionYear> |
|
29 | 29 | <url>https://github.com/ably/ably-java/issues</url> |
30 | 30 | </issueManagement> |
31 | 31 | <dependencies> |
32 | | - <dependency> |
33 | | - <groupId>org.msgpack</groupId> |
34 | | - <artifactId>msgpack-core</artifactId> |
35 | | - <version>0.7.0-p9</version> |
36 | | - </dependency> |
37 | 32 | <dependency> |
38 | 33 | <groupId>org.java-websocket</groupId> |
39 | 34 | <artifactId>Java-WebSocket</artifactId> |
40 | 35 | <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> |
41 | 49 | </dependency> |
42 | 50 | <dependency> |
43 | 51 | <groupId>com.google.code.gson</groupId> |
44 | 52 | <artifactId>gson</artifactId> |
45 | | - <version>2.4</version> |
| 53 | + <version>2.5</version> |
| 54 | + <scope>compile</scope> |
46 | 55 | </dependency> |
47 | 56 | <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> |
51 | 61 | </dependency> |
52 | 62 | <dependency> |
53 | 63 | <groupId>com.nanohttpd</groupId> |
54 | 64 | <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> |
56 | 79 | </dependency> |
57 | 80 | </dependencies> |
58 | 81 | </project> |
0 commit comments