From 0d7f95b27ac9a59bc41cd2ec670e04f40fd75cf5 Mon Sep 17 00:00:00 2001 From: Vincent Biret Date: Fri, 30 Apr 2021 08:58:50 -0400 Subject: [PATCH] - updates guidance to include azure identity --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 959442f5a1a..013c5e84394 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() } @@ -22,6 +22,8 @@ dependencies { implementation 'com.microsoft.graph:microsoft-graph:3.3.0' // Uncomment the line below if you are building an android application //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.3.0 + + com.azure + azure-identity + 1.2.5 ```