File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed
Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ Get started with the Microsoft Graph SDK for Java by integrating the [Microsoft
1212
1313Add the repository and a compile dependency for ` microsoft-graph-beta ` to your project's ` build.gradle ` :
1414
15- ``` gradle
15+ ``` Groovy
1616repositories {
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
4048Add the repository in ` repositories ` in pom.xml
You can’t perform that action at this time.
0 commit comments