-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
31 lines (27 loc) · 942 Bytes
/
settings.gradle
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
/*
* Enterprise plugin replaces Build scan plugin from gradle 6, see https://docs.gradle.com/enterprise/gradle-plugin/
*/
plugins {
id 'com.gradle.enterprise' version '3.17'
}
// Make the root project name independent of the directory name where we checked out the repository.
// This can avoid problems with directory names like "cgeo pull request" containing blanks on CI.
rootProject.name = "cgeo"
// included sub projects
include ':mapswithme-api'
include ':organicmaps-api'
include ':main'
// Configure the built-in local build cache to a pre-defined directory.
// Gradle will periodically clean-up by removing entries that have not been used recently
buildCache {
local() {
directory = new File(rootDir, 'build-cache')
removeUnusedEntriesAfterDays = 30
}
}
gradleEnterprise {
buildScan {
termsOfServiceUrl = "https://gradle.com/terms-of-service"
termsOfServiceAgree = "yes"
}
}