-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle.kts
64 lines (54 loc) · 1.36 KB
/
settings.gradle.kts
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
@file:Suppress("UnstableApiUsage")
pluginManagement {
repositories {
maven("https://gradle.pkg.st")
maven("https://maven.pkg.st")
google()
mavenCentral()
gradlePluginPortal()
}
}
plugins {
id("build.less") version "1.0.0-rc2"
id("com.gradle.enterprise") version("3.15.1")
id("com.gradle.common-custom-user-data-gradle-plugin") version("1.12")
id("org.gradle.toolchains.foojay-resolver-convention") version("0.7.0")
}
gradleEnterprise {
buildScan {
termsOfServiceUrl = "https://gradle.com/terms-of-service"
termsOfServiceAgree = "yes"
}
}
buildscript {
repositories {
maven("https://gradle.pkg.st")
maven("https://maven.pkg.st")
google()
}
dependencies {
classpath("com.google.guava:guava") {
version {
strictly("32.1.3-android")
}
}
}
}
dependencyResolutionManagement {
repositoriesMode = RepositoriesMode.FAIL_ON_PROJECT_REPOS
repositories {
pkgst()
google()
mavenCentral()
}
}
rootProject.name = "sample-android-gradle"
include(
":app"
)
buildless {
// settings go here (this block is optional)
}
enableFeaturePreview("STABLE_CONFIGURATION_CACHE")
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
enableFeaturePreview("GROOVY_COMPILATION_AVOIDANCE")