forked from line/centraldogma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
37 lines (29 loc) · 1.68 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
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-spring-boot-autoconfigure', 'java', 'publish', 'relocate'
includeWithFlags ':client:java-spring-boot-starter', 'java', 'publish', 'relocate'
includeWithFlags ':client:java-spring-boot1-autoconfigure', 'java', 'publish', 'relocate'
includeWithFlags ':client:java-spring-boot1-starter', 'java', '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 ':testing', 'java', 'publish', 'relocate'
// Command line interface
include ':cli'
// Unpublished Java projects
includeWithFlags ':it', 'java', 'relocate'
includeWithFlags ':testing-internal', 'java', 'relocate'
// Unpublished non-Java projects
includeWithFlags ':server-auth:webapp'
// Site generation project
includeWithFlags ':site'
// Distribution
includeWithFlags ':dist', 'java'