Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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()
}
Expand All @@ -21,7 +21,9 @@ dependencies {
// Include the sdk as a dependency
implementation 'com.microsoft.graph:microsoft-graph:3.4.0'
// Uncomment the line below if you are building an android application
//implementation 'com.google.guava:guava:3.4.0-android'
//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'
}
```

Expand All @@ -31,9 +33,14 @@ Add the dependency in `dependencies` in pom.xml

```xml
<dependency>
<!-- Include the sdk as a dependency -->
<groupId>com.microsoft.graph</groupId>
<artifactId>microsoft-graph</artifactId>
<version>3.4.0</version>
<!-- This dependency is only needed if you are using the TokenCrendentialAuthProvider -->
<groupId>com.azure</groupId>
<artifactId>azure-identity</artifactId>
<version>1.2.5</version>
</dependency>
```

Expand Down