File tree Expand file tree Collapse file tree 2 files changed +11
-4
lines changed
Expand file tree Collapse file tree 2 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -9,5 +9,5 @@ dependencies {
99 implementation ' com.google.guava:guava:30.1.1-jre'
1010
1111 implementation ' com.google.code.gson:gson:2.8.6'
12- api ' com.azure:azure-identity :1.2.5 '
12+ api ' com.azure:azure-core :1.15.0 '
1313}
Original file line number Diff line number Diff line change @@ -21,6 +21,8 @@ repositories {
2121dependencies {
2222 // Include the sdk as a dependency
2323 implementation 'com.microsoft.graph:microsoft-graph-core:2.0.1'
24+ // This depdency is only needed if you are using the TokenCrendentialAuthProvider
25+ implementation 'com.azure:azure-identity:1.2.5'
2426}
2527```
2628
@@ -30,9 +32,14 @@ Add the dependency in `dependencies` in pom.xml
3032
3133``` xml
3234<dependency >
33- <groupId >com.microsoft.graph</groupId >
34- <artifactId >microsoft-graph-core</artifactId >
35- <version >2.0.1</version >
35+ <!-- Include the sdk as a dependency -->
36+ <groupId >com.microsoft.graph</groupId >
37+ <artifactId >microsoft-graph-core</artifactId >
38+ <version >2.0.1</version >
39+ <!-- This depdency is only needed if you are using the TokenCrendentialAuthProvider -->
40+ <groupId >com.azure</groupId >
41+ <artifactId >azure-identity</artifactId >
42+ <version >1.2.5</version >
3643</dependency >
3744```
3845
You can’t perform that action at this time.
0 commit comments