Skip to content

Commit f262d97

Browse files
authored
Update README.md
1 parent 943e849 commit f262d97

1 file changed

Lines changed: 34 additions & 0 deletions

File tree

README.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,40 @@
22
signalGo client version for java
33

44
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)
539

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

0 commit comments

Comments
 (0)