-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
41 lines (40 loc) · 1.1 KB
/
settings.gradle
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
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
maven {
url "https://gitlab.com/api/v4/groups/13791991/-/packages/maven"
name "GitLab"
credentials(HttpHeaderCredentials) {
name = 'Private-Token'
value = "glpat-x5o5hNYBsfybDNJx9fGz"
}
authentication {
header(HttpHeaderAuthentication)
}
}
}
}
dependencyResolutionManagement {
repositories {
google()
mavenCentral()
maven {
url "https://gitlab.com/api/v4/groups/13791991/-/packages/maven"
name "GitLab"
credentials(HttpHeaderCredentials) {
name = 'Private-Token'
value = "glpat-x5o5hNYBsfybDNJx9fGz"
}
authentication {
header(HttpHeaderAuthentication)
}
}
}
}
rootProject.name = "leetcode-data-builder"
include ':app'
include ':data_builder_annotations'
include ':data_builder_processor'
include ':data_builder_ksp'