Initial add of a README.

This commit is contained in:
Brendan Burns 2019-10-09 10:29:13 -07:00
parent b42372ed81
commit 03ed8c1ebf
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
```