Skip to content

Instantly share code, notes, and snippets.

@baywet
Forked from maisarissi/build.gradle
Created February 7, 2024 19:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save baywet/9916fa2ed429e17288b8d396b551bfb8 to your computer and use it in GitHub Desktop.
Save baywet/9916fa2ed429e17288b8d396b551bfb8 to your computer and use it in GitHub Desktop.
microsoftgraph-java-v6-sefl-serve-kiota-build-gradle
repositories {
// Use Maven Central for resolving dependencies.
mavenCentral()
}
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:1.0.0'
implementation 'com.microsoft.kiota:microsoft-kiota-authentication-azure:1.0.0'
implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:1.0.0'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:1.0.0'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:1.0.0'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-form:1.0.0'
implementation'com.microsoft.kiota:microsoft-kiota-serialization-multipart:1.0.0'
// Identity dependency
implementation 'com.azure:azure-identity:1.11.1'
// Graph Core dependency
implementation 'com.microsoft.graph:microsoft-graph-core:3.1.0'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment