Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
makbn authored Aug 19, 2016
1 parent 943e849 commit f262d97
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,40 @@
signalGo client version for java

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!
# Download
la
get latest version jar from [here](https://github.com/SignalGo/client-java/releases) and add to your project!
for maven project add following dependencies to your project pom.xml file:
```xml
<dependencies>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.8.1</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-joda</artifactId>
<version>2.8.1</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>18.0</version>
<type>jar</type>
</dependency>
```
and for gradle:
```groovy
compile 'com.fasterxml.jackson.core:jackson-core:2.8.1'
compile 'com.fasterxml.jackson.core:jackson-databind:2.8.1'
compile group: 'com.google.guava', name: 'guava', version: '19.0'
compile('com.fasterxml.jackson.datatype:jackson-datatype-joda:2.8.1') {
exclude module: 'joda-time'
}
```

For more detailed usage, check out it out [here](https://github.com/SignalGo/client-java/wiki)

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

0 comments on commit f262d97

Please sign in to comment.