-
Notifications
You must be signed in to change notification settings - Fork 515
Expand file tree
/
Copy pathsettings.gradle
More file actions
86 lines (76 loc) · 2.2 KB
/
settings.gradle
File metadata and controls
86 lines (76 loc) · 2.2 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
import static java.lang.System.getenv
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
}
}
plugins {
id 'com.diffplug.spotless' version '8.3.0' apply false
id 'com.github.spotbugs' version '6.4.8' apply false // https://github.com/spotbugs/spotbugs-gradle-plugin/releases
id 'com.gradle.develocity' version '4.3.2'
}
dependencyResolutionManagement {
repositories {
mavenCentral()
}
}
if (System.env['CI'] != null) {
// use the remote buildcache on all CI builds
buildCache {
def cred = {
if (System.env[it] != null) {
return System.env[it]
} else {
return System.getProperty(it)
}
}
remote(HttpBuildCache) {
url = 'https://buildcache.diffplug.com/cache/'
// but we only push if it's a trusted build (not PRs)
String user = cred('buildcacheuser')
String pass = cred('buildcachepass')
if (user != null && pass != null) {
push = true
credentials {
username = user
password = pass
}
} else {
credentials { username = 'anonymous' }
}
}
}
}
develocity {
buildScan {
termsOfUseUrl = "https://gradle.com/terms-of-service"
termsOfUseAgree = "yes"
publishing {
onlyIf { getenv('CI') != null }
}
}
}
enableFeaturePreview("STABLE_CONFIGURATION_CACHE")
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
rootProject.name = 'spotless'
include 'lib' // reusable library with no dependencies
include 'lib-extra' // reusable library with lots of dependencies
include 'plugin-gradle' // gradle-specific glue code
include 'testlib' // library for sharing test infrastructure between the projects below
def getStartProperty(String name) {
def value = startParameter.getProjectProperties().get(name)
if(null != value) {
return value
}
// user properties are not available in the startParameter
def userPropertiesFile = new File(startParameter.getGradleUserHomeDir(), 'gradle.properties')
def userProperties = new Properties()
if (userPropertiesFile.exists()) {
userProperties.load(userPropertiesFile.newReader())
}
return userProperties.get(name)
}
if (!getenv('SPOTLESS_EXCLUDE_MAVEN')?.toBoolean() && !Boolean.valueOf(getStartProperty('SPOTLESS_EXCLUDE_MAVEN') as String)) {
include 'plugin-maven' // maven-specific glue code
}