-
Notifications
You must be signed in to change notification settings - Fork 118
/
settings.gradle
48 lines (41 loc) · 2.55 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
48
rootProject.name = 'centraldogma'
apply from: "${rootDir}/gradle/scripts/settings-flags.gradle"
// Published BOM projects
includeWithFlags ':bom', 'bom'
// Published Java projects
includeWithFlags ':client:java', 'java', 'publish', 'relocate'
includeWithFlags ':client:java-armeria', 'java', 'publish', 'relocate'
includeWithFlags ':client:java-armeria-legacy', 'java', 'publish', 'relocate'
includeWithFlags ':client:java-armeria-xds', 'java', 'publish', 'relocate'
includeWithFlags ':client:java-spring-boot2-autoconfigure', 'java', 'publish', 'relocate', 'no_aggregation'
includeWithFlags ':client:java-spring-boot2-starter', 'java', 'publish', 'relocate', 'no_aggregation'
includeWithFlags ':client:java-spring-boot3-autoconfigure', 'java17', 'publish', 'relocate'
includeWithFlags ':client:java-spring-boot3-starter', 'java17', 'publish', 'relocate'
includeWithFlags ':common', 'java', 'publish', 'shade', 'trim'
includeWithFlags ':common-legacy', 'java', 'publish', 'relocate'
includeWithFlags ':server', 'java', 'publish', 'relocate'
includeWithFlags ':server-auth:saml', 'java', 'publish', 'relocate'
includeWithFlags ':server-auth:shiro', 'java', 'publish', 'relocate'
includeWithFlags ':server-mirror-git', 'java11', 'publish', 'relocate'
includeWithFlags ':testing:testing-common', 'java', 'publish', 'relocate'
includeWithFlags ':testing:junit', 'java', 'publish', 'relocate'
includeWithFlags ':testing:junit4', 'java', 'publish', 'relocate'
includeWithFlags ':xds', 'java', 'publish', 'relocate'
// Set correct directory names
project(':testing:testing-common').projectDir = file('testing/common')
// Unpublished Java projects
includeWithFlags ':benchmarks:jmh', 'java'
includeWithFlags ':it:it-mirror', 'java11', 'relocate'
// Set correct directory names
project(':it:it-mirror').projectDir = file('it/mirror')
includeWithFlags ':it:it-server', 'java', 'relocate'
// Set correct directory names
project(':it:it-server').projectDir = file('it/server')
includeWithFlags ':it:zone-leader-plugin', 'java', 'relocate'
includeWithFlags ':testing-internal', 'java', 'relocate'
// Unpublished projects
includeWithFlags ':webapp', 'java11'
// Site generation project
includeWithFlags ':site'
// Distribution
includeWithFlags ':dist', 'java11'