From f262d971c2ba060c3f2ddbc8c79f84a00b138511 Mon Sep 17 00:00:00 2001 From: mehdi akbarian Date: Sat, 20 Aug 2016 00:03:50 +0430 Subject: [PATCH] Update README.md --- README.md | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/README.md b/README.md index 46d7b57..3e10369 100644 --- a/README.md +++ b/README.md @@ -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 + + + com.fasterxml.jackson.core + jackson-databind + 2.8.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-joda + 2.8.1 + + + com.google.guava + guava + 18.0 + jar + +``` +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: