forked from LibChecker/LibChecker
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
55 lines (48 loc) · 1.27 KB
/
Copy pathsettings.gradle.kts
File metadata and controls
55 lines (48 loc) · 1.27 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
pluginManagement {
repositories {
google {
content {
includeGroupByRegex(".*google.*")
includeGroupByRegex(".*android.*")
}
}
mavenCentral()
gradlePluginPortal()
}
includeBuild("build-logic")
}
dependencyResolutionManagement {
repositoriesMode = RepositoriesMode.FAIL_ON_PROJECT_REPOS
repositories {
google {
content {
includeGroupByRegex(".*google.*")
includeGroupByRegex(".*android.*")
}
}
maven("https://jitpack.io") {
content {
includeGroupByRegex("com.github.*")
}
}
mavenCentral()
}
}
plugins {
id("com.gradle.develocity") version "4.5.0"
id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0"
}
develocity {
buildScan {
termsOfUseUrl = "https://gradle.com/terms-of-service"
termsOfUseAgree = "yes"
// TODO: workaround for https://github.com/gradle/gradle/issues/22879.
val isCI = providers.environmentVariable("CI").isPresent
publishing.onlyIf { isCI }
}
}
enableFeaturePreview("STABLE_CONFIGURATION_CACHE")
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
enableFeaturePreview("NO_IMPLICIT_LOOKUP_IN_PARENT_PROJECTS")
include(":app", ":compat", ":hidden-api", ":macrobenchmark")
rootProject.name = "LibChecker"