Skip to content

Commit 1a3e08c

Browse files
committed
- fixes #194 and replaces the azure identity dependency by azure core
1 parent a6a6ee9 commit 1a3e08c

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

gradle/dependencies.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
}

readme.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ repositories {
2121
dependencies {
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

0 commit comments

Comments
 (0)