diff --git a/README.md b/README.md index d79b09a6d38..b7d06d5a63d 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Get started with the Microsoft Graph SDK for Java by integrating the [Microsoft Add the repository and a compile dependency for `microsoft-graph` to your project's `build.gradle`: -```gradle +```groovy repositories { mavenCentral() } @@ -21,7 +21,9 @@ dependencies { // Include the sdk as a dependency implementation 'com.microsoft.graph:microsoft-graph:3.4.0' // Uncomment the line below if you are building an android application - //implementation 'com.google.guava:guava:3.4.0-android' + //implementation 'com.google.guava:guava:30.1.1-android' + // This dependency is only needed if you are using the TokenCrendentialAuthProvider + implementation 'com.azure:azure-identity:1.2.5' } ``` @@ -31,9 +33,14 @@ Add the dependency in `dependencies` in pom.xml ```xml + com.microsoft.graph microsoft-graph 3.4.0 + + com.azure + azure-identity + 1.2.5 ```