Merge pull request #2 from brendandburns/master

Initial add of a README.
This commit is contained in:
Aman Bhardwaj 2019-10-09 21:30:16 -07:00 committed by GitHub
commit 5912ca903d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 14 additions and 0 deletions

14
README.md Normal file
View File

@ -0,0 +1,14 @@
## Java client for dapr.
### Installing
```sh
# make sure you are in the `java-sdk` directory.
mvn package install
```
### Running an example
```sh
cd examples/
mvn compile
dapr run --grpc-port 50001 -- mvn exec:java -Dexec.mainClass=io.dapr.examples.Example
```