Last active
February 7, 2024 19:42
-
-
Save maisarissi/c9308474979ad4e6425301da573effa2 to your computer and use it in GitHub Desktop.
microsoftgraph-java-v6-sefl-serve-kiota-build-gradle
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
repositories { | |
// Use Maven Central for resolving dependencies. | |
mavenCentral() | |
// Add sonatype repository | |
maven { | |
url 'https://oss.sonatype.org/content/repositories/snapshots/' | |
} | |
} | |
dependencies { | |
// Use JUnit test framework. | |
testImplementation libs.junit | |
// This dependency is used by the application. | |
implementation libs.guava | |
implementation 'jakarta.annotation:jakarta.annotation-api:3.0.0-M1' | |
//Kiota dependencies | |
implementation 'com.microsoft.kiota:microsoft-kiota-abstractions:0.11.2' | |
implementation 'com.microsoft.kiota:microsoft-kiota-authentication-azure:0.11.2' | |
implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:0.11.2' | |
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:0.11.2' | |
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:0.11.2' | |
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-form:0.11.2' | |
implementation'com.microsoft.kiota:microsoft-kiota-serialization-multipart:0.11.2' | |
// Identity dependency | |
implementation 'com.azure:azure-identity:1.11.1' | |
// Graph Core dependency | |
implementation 'com.microsoft.graph:microsoft-graph-core:3.0.12-SNAPSHOT' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment