diff --git a/daprdocs/content/en/java-sdk-docs/_index.md b/daprdocs/content/en/java-sdk-docs/_index.md index b1d83869f2..26609c6ff9 100644 --- a/daprdocs/content/en/java-sdk-docs/_index.md +++ b/daprdocs/content/en/java-sdk-docs/_index.md @@ -22,28 +22,28 @@ description: Java SDK packages for developing Dapr applications ## Importing Dapr's Java SDK For a Maven project, add the following to your `pom.xml` file: -```java +```xml ... ... - // Dapr's core SDK with all features, except Actors. + io.dapr - dapr-sdk - 1.1.0 + dapr-sdk + 1.2.0 - // Dapr's SDK for Actors (optional). + io.dapr dapr-sdk-actors - 1.1.0> + 1.2.0 - // Dapr's SDK integration with SpringBoot (optional). + io.dapr dapr-sdk-springboot - 1.1.0> + 1.2.0 ... @@ -57,11 +57,11 @@ For a Gradle project, add the following to your `build.gradle` file: dependencies { ... // Dapr's core SDK with all features, except Actors. - compile('io.dapr:dapr-sdk:1.1.0')) + compile('io.dapr:dapr-sdk:1.2.0') // Dapr's SDK for Actors (optional). - compile('io.dapr:dapr-sdk-actors:1.1.0') + compile('io.dapr:dapr-sdk-actors:1.2.0') // Dapr's SDK integration with SpringBoot (optional). - compile('io.dapr:dapr-sdk-springboot:1.1.0') + compile('io.dapr:dapr-sdk-springboot:1.2.0') } ``` @@ -240,4 +240,4 @@ public interface DemoActor { - Visit [Java SDK examples](https://github.com/dapr/java-sdk/tree/master/examples/src/main/java/io/dapr/examples/actors) for code samples and instructions to try actors ## Related links -- [Java SDK examples](https://github.com/dapr/java-sdk/tree/master/examples/src/main/java/io/dapr/examples) \ No newline at end of file +- [Java SDK examples](https://github.com/dapr/java-sdk/tree/master/examples/src/main/java/io/dapr/examples)