-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
40 lines (38 loc) · 1.34 KB
/
Copy pathsettings.gradle.kts
File metadata and controls
40 lines (38 loc) · 1.34 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
// SPDX-License-Identifier: GPL-3.0-or-later
pluginManagement {
repositories {
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
// Scoped like the pluginManagement block above: unfiltered, google() was consulted for
// every third-party coordinate (coroutines, guava, nextlib) and 404'd before falling
// through — the same wasted round-trip the JitPack scoping below exists to avoid.
google {
content {
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("androidx.*")
}
}
// JitPack hosts nextlib (com.github.anilbeesetti.*); scope it so that group
// resolves straight from JitPack instead of first timing out on Maven Central.
maven {
url = uri("https://jitpack.io")
content { includeGroupByRegex("com\\.github.*") }
}
mavenCentral()
}
}
rootProject.name = "Timbra"
include(":app")