-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsettings.gradle
More file actions
63 lines (56 loc) · 1.64 KB
/
settings.gradle
File metadata and controls
63 lines (56 loc) · 1.64 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
pluginManagement {
plugins {
id 'com.gradle.develocity' version '4.4.1'
id 'org.gradle.toolchains.foojay-resolver-convention' version '1.0.0'
id 'org.jetbrains.kotlin.jvm' version '2.3.21'
id 'dev.zacsweers.moshix' version '0.35.0'
id 'com.autonomousapps.testkit' version '0.18'
id 'com.autonomousapps.build-health' version '3.6.0'
id 'com.gradle.plugin-publish' version '1.3.1'
id 'com.vanniktech.maven.publish' version '0.36.0'
id 'com.android.lint' version '9.0.0'
id 'org.jetbrains.intellij.platform' version '2.16.0'
id 'com.fueledbycaffeine.autoservice' version '0.1.3'
}
repositories {
gradlePluginPortal()
mavenCentral()
google()
}
}
plugins {
id 'com.gradle.develocity'
id 'org.gradle.toolchains.foojay-resolver-convention'
id 'org.jetbrains.kotlin.jvm' apply false
id 'com.autonomousapps.build-health'
}
dependencyResolutionManagement {
repositories {
mavenCentral()
google()
gradlePluginPortal()
}
}
develocity {
buildScan {
publishing.onlyIf { true }
termsOfUseUrl = "https://gradle.com/terms-of-service"
termsOfUseAgree = "yes"
if (System.getenv("CI")) {
tag("CI")
} else {
tag("Local")
}
}
}
rootProject.name = 'spotlight'
include ':buildscript-utils'
include ':spotlight-gradle-plugin'
// only include the IDE plugin for sync, or if it was requested via flag for builds
def buildIdePlugin = providers.gradleProperty("buildIdePlugin")
.getOrElse("false").toBoolean()
def isSync = providers.systemProperty("idea.sync.active")
.getOrElse("false").toBoolean()
if (buildIdePlugin || isSync) {
include ':spotlight-idea-plugin'
}