aboutsummaryrefslogtreecommitdiffstats
path: root/settings.gradle
blob: d15f0d6f31c77868927664e2a968d592e5c1e4ec (plain)
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
rootProject.name = 'sonarqube'

include 'plugins:sonar-xoo-plugin'

include 'server:sonar-bitbucketcloud'
include 'server:sonar-ce'
include 'server:sonar-db-testing'
include 'server:sonar-db-core'
include 'server:sonar-db-dao'
include 'server:sonar-db-migration'
include 'server:sonar-main'
include 'server:sonar-plugin-bridge'
include 'server:sonar-process'
include 'server:sonar-qa-util'
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-plugin-api-deps'
include 'sonar-scanner-engine'
include 'sonar-scanner-engine-shaded'
include 'sonar-scanner-protocol'
include 'sonar-testing-harness'
include 'sonar-ws'
include 'sonar-ws-generator'

include 'tests:plugins:access-secured-props-plugin'
include 'tests:plugins:backdating-customplugin'
include 'tests:plugins:backdating-plugin-v1'
include 'tests:plugins:backdating-plugin-v2'
include 'tests:plugins:base-auth-plugin'
include 'tests:plugins:batch-plugin'
include 'tests:plugins:blue-green-plugin-v1'
include 'tests:plugins:blue-green-plugin-v2'
include 'tests:plugins:extension-lifecycle-plugin'
include 'tests:plugins:fake-billing-plugin'
include 'tests:plugins:fake-governance-plugin'
include 'tests:plugins:foo-plugin-v1'
include 'tests:plugins:foo-plugin-v2'
include 'tests:plugins:foo-plugin-v3'
include 'tests:plugins:foo-plugin-without-qprofile'
include 'tests:plugins:global-property-change-plugin'
include 'tests:plugins:issue-filter-plugin'
include 'tests:plugins:l10n-fr-pack'
include 'tests:plugins:license-plugin'
include 'tests:plugins:oauth2-auth-plugin'
include 'tests:plugins:posttask-plugin'
include 'tests:plugins:project-builder-plugin'
include 'tests:plugins:property-relocation-plugin'
include 'tests:plugins:property-sets-plugin'
include 'tests:plugins:save-measure-on-project-plugin'
include 'tests:plugins:security-plugin'
include 'tests:plugins:server-plugin'
include 'tests:plugins:settings-encryption-plugin'
include 'tests:plugins:settings-plugin'
include 'tests:plugins:sonar-fake-plugin'
include 'tests:plugins:sonar-subcategories-plugin'
include 'tests:plugins:ui-extensions-plugin'
include 'tests:plugins:wait-at-platform-level4-plugin'
include 'tests:plugins:ws-plugin'
include 'tests'

// 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
}