Skip to content

Instantly share code, notes, and snippets.

@maisarissi
Last active February 7, 2024 19:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save maisarissi/c9308474979ad4e6425301da573effa2 to your computer and use it in GitHub Desktop.
Save maisarissi/c9308474979ad4e6425301da573effa2 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()
// 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