-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsettings.gradle
More file actions
24 lines (19 loc) · 794 Bytes
/
settings.gradle
File metadata and controls
24 lines (19 loc) · 794 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// SPDX-FileCopyrightText: NONE
// SPDX-License-Identifier: CC0-1.0
pluginManagement {
apply from: 'dependencies.gradle'
plugins { id 'com.gradle.develocity' version "${-> develocityPluginVersion}" }
}
plugins { id 'com.gradle.develocity' }
rootProject.name = 'Google sync add-on'
gradle.rootProject { project ->
project.layout.buildDirectory.set project.layout.projectDirectory.dir('output')
}
// Initialize the provider early to ensure compatibility with the Gradle configuration cache
providers.environmentVariable('UPLOAD_BUILD_SCAN').with { uploadBuildScan ->
develocity.buildScan {
termsOfUseUrl.set 'https://gradle.com/help/legal-terms-of-use'
termsOfUseAgree.set 'yes'
publishing.onlyIf { uploadBuildScan.getOrElse('').toBoolean() }
}
}