-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathdependencies.gradle
More file actions
28 lines (24 loc) · 1.37 KB
/
dependencies.gradle
File metadata and controls
28 lines (24 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
dependencies {
// Use JUnit test framework
testImplementation 'org.junit.jupiter:junit-jupiter:6.0.2'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
testImplementation 'org.mockito:mockito-core:5.23.0'
testImplementation 'io.opentelemetry:opentelemetry-api:1.54.0'
testImplementation 'io.opentelemetry:opentelemetry-context:1.54.0'
testImplementation 'io.github.std-uritemplate:std-uritemplate:1.0.6'
implementation 'com.google.code.gson:gson:2.13.2'
implementation 'jakarta.annotation:jakarta.annotation-api:2.1.1'
implementation 'io.jsonwebtoken:jjwt-api:0.13.0'
runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.13.0'
runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.13.0'
implementation 'com.auth0:jwks-rsa:0.23.0'
api 'com.squareup.okhttp3:okhttp:4.12.0'
api 'com.azure:azure-core:1.57.1'
api 'com.microsoft.kiota:microsoft-kiota-abstractions:1.9.0'
api 'com.microsoft.kiota:microsoft-kiota-authentication-azure:1.9.0'
implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:1.9.0'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:1.9.0'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:1.9.0'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-form:1.9.0'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-multipart:1.9.0'
}