Skip to content

Commit 00993a7

Browse files
committed
- adds missing az identity dependency
1 parent 0dfeeb1 commit 00993a7

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Get started with the Microsoft Graph SDK for Java by integrating the [Microsoft
1212

1313
Add the repository and a compile dependency for `microsoft-graph-beta` to your project's `build.gradle`:
1414

15-
```gradle
15+
```Groovy
1616
repositories {
1717
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
1818
}
@@ -22,6 +22,8 @@ dependencies {
2222
implementation 'com.microsoft.graph:microsoft-graph-beta:0.15.0-SNAPSHOT'
2323
// Uncomment the line below if you are building an android application
2424
//implementation 'com.google.guava:guava:30.1.1-android'
25+
// This dependency is only needed if you are using the TokenCrendentialAuthProvider
26+
implementation 'com.azure:azure-identity:1.2.5'
2527
}
2628
```
2729

@@ -35,6 +37,12 @@ Add the dependency in `dependencies` in pom.xml
3537
<artifactId>microsoft-graph-beta</artifactId>
3638
<version>0.15.0-SNAPSHOT</version>
3739
</dependency>
40+
<dependency>
41+
<!-- This dependency is only needed if you are using the TokenCrendentialAuthProvider -->
42+
<groupId>com.azure</groupId>
43+
<artifactId>azure-identity</artifactId>
44+
<version>1.2.5</version>
45+
</dependency>
3846
```
3947

4048
Add the repository in `repositories` in pom.xml

0 commit comments

Comments
 (0)