forked from SonarSource/sonarqube
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
47 lines (41 loc) · 1.22 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
rootProject.name = 'sonarqube'
include 'plugins:sonar-xoo-plugin'
include 'server:sonar-ce'
include 'server:sonar-ce-common'
include 'server:sonar-ce-task'
include 'server:sonar-ce-task-projectanalysis'
include 'server:sonar-db-testing'
include 'server:sonar-db-core'
include 'server:sonar-db-dao'
include 'server:sonar-db-migration'
include 'server:sonar-docs'
include 'server:sonar-main'
include 'server:sonar-process'
include 'server:sonar-server'
include 'server:sonar-server-common'
include 'server:sonar-vsts'
include 'server:sonar-web'
include 'sonar-application'
include 'sonar-check-api'
include 'sonar-core'
include 'sonar-duplications'
include 'sonar-markdown'
include 'sonar-plugin-api'
include 'sonar-scanner-engine'
include 'sonar-scanner-engine-shaded'
include 'sonar-scanner-protocol'
include 'sonar-shutdowner'
include 'sonar-testing-harness'
include 'sonar-ws'
include 'sonar-ws-generator'
// use Settings.getRootDir() so that it doesn't matter which directory you are executing from
File extraSettings = new File(rootDir, 'private/settings.gradle')
if (extraSettings.exists()) {
apply from: extraSettings
}
ext.isCiServer = System.getenv().containsKey("CIRRUS_CI")
buildCache {
local {
enabled = !isCiServer
}
}