-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathbuild.gradle
More file actions
91 lines (74 loc) · 2.44 KB
/
Copy pathbuild.gradle
File metadata and controls
91 lines (74 loc) · 2.44 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
buildscript {
repositories {
google()
gradlePluginPortal()
}
dependencies {
classpath "com.gradle:gradle-enterprise-gradle-plugin:3.19.2"
classpath "com.android.tools.build:gradle:9.3.0"
classpath "com.github.ben-manes:gradle-versions-plugin:0.54.0"
}
}
repositories {
google()
gradlePluginPortal()
mavenCentral()
}
apply plugin: "com.android.library"
apply plugin: "com.github.ben-manes.versions"
android {
namespace "com.microsoft.graph"
compileSdkVersion 37
defaultConfig {
versionCode 1
versionName "1.0"
minSdkVersion 26
targetSdkVersion 37
}
buildTypes {
release {
minifyEnabled false
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
lint {
baseline = file("lint-baseline.xml")
}
lintOptions {
textOutput "stdout"
checkAllWarnings true
warningsAsErrors true
lintConfig file("lint.xml")
disable 'AndroidGradlePluginVersion' // We will not be upgrading gradle to version 9 as it does not support our minimum required version of jdk8
}
sourceSets {
main {
java.srcDirs = ['../src/main/java']
res.srcDirs = ['../src/main/java']
manifest.srcFile 'AndroidManifest.xml'
}
androidTest {
setRoot '../src/test'
}
}
}
dependencies {
implementation 'com.google.code.gson:gson:2.14.0'
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.24.1'
api 'com.squareup.okhttp3:okhttp:4.12.0'
api 'com.azure:azure-core:1.58.1'
api 'com.microsoft.kiota:microsoft-kiota-abstractions:1.9.3'
api 'com.microsoft.kiota:microsoft-kiota-authentication-azure:1.9.3'
implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:1.9.3'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:1.9.3'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:1.9.3'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-form:1.9.3'
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-multipart:1.9.3'
}