Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/SignalGo/client-java
Browse files Browse the repository at this point in the history
  • Loading branch information
makbn committed Sep 8, 2016
2 parents 59bb842 + f262d97 commit a18eb9c
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,41 @@
# client-java
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 a18eb9c

Please sign in to comment.