Skip to content

Commit a18eb9c

Browse files
committed
Merge branch 'master' of https://github.com/SignalGo/client-java
2 parents 59bb842 + f262d97 commit a18eb9c

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

README.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,41 @@
11
# client-java
22
signalGo client version for java
33

4+
SignalGo is a library for Cross-Platform developers that makes it incredibly simple to add real-time web functionality to your applications. What is "real-time web" functionality? It's the ability to have your server-side code push content to the connected clients as it happens, in real-time. like WCF and SignalR!on the other hand you have bi-direction socket connection that both client and server can call each other!one more intresting thing is you can user signalGo .Net server verion for your backend and java version for client, and conversely!
5+
# Download
6+
la
7+
get latest version jar from [here](https://github.com/SignalGo/client-java/releases) and add to your project!
8+
for maven project add following dependencies to your project pom.xml file:
9+
```xml
10+
<dependencies>
11+
<dependency>
12+
<groupId>com.fasterxml.jackson.core</groupId>
13+
<artifactId>jackson-databind</artifactId>
14+
<version>2.8.1</version>
15+
</dependency>
16+
<dependency>
17+
<groupId>com.fasterxml.jackson.datatype</groupId>
18+
<artifactId>jackson-datatype-joda</artifactId>
19+
<version>2.8.1</version>
20+
</dependency>
21+
<dependency>
22+
<groupId>com.google.guava</groupId>
23+
<artifactId>guava</artifactId>
24+
<version>18.0</version>
25+
<type>jar</type>
26+
</dependency>
27+
```
28+
and for gradle:
29+
```groovy
30+
compile 'com.fasterxml.jackson.core:jackson-core:2.8.1'
31+
compile 'com.fasterxml.jackson.core:jackson-databind:2.8.1'
32+
compile group: 'com.google.guava', name: 'guava', version: '19.0'
33+
compile('com.fasterxml.jackson.datatype:jackson-datatype-joda:2.8.1') {
34+
exclude module: 'joda-time'
35+
}
36+
```
37+
38+
For more detailed usage, check out it out [here](https://github.com/SignalGo/client-java/wiki)
439

540
# Pull Requests
641
I welcome all pull requests. Here are some basic rules of your request:

0 commit comments

Comments
 (0)