forked from line/armeria
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
31 lines (26 loc) · 1.6 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
rootProject.name = 'armeria'
apply from: "${rootDir}/gradle/scripts/settings-flags.gradle"
// Published BOM projects
includeWithFlags ':bom', 'bom'
// Published Java projects
includeWithFlags ':core', 'java', 'publish', 'shade', 'trim'
includeWithFlags ':grpc', 'java', 'publish', 'relocate'
includeWithFlags ':jetty', 'java', 'publish', 'relocate'
includeWithFlags ':kafka', 'java', 'publish', 'relocate'
includeWithFlags ':logback', 'java', 'publish', 'relocate'
includeWithFlags ':retrofit2', 'java', 'publish', 'relocate'
includeWithFlags ':spring-boot:autoconfigure', 'java', 'publish', 'relocate'
includeWithFlags ':spring-boot:starter', 'java', 'publish', 'relocate'
includeWithFlags ':testing', 'java', 'publish', 'relocate'
includeWithFlags ':thrift', 'java', 'publish', 'relocate'
includeWithFlags ':thrift0.9', 'java', 'publish', 'relocate', 'no_aggregation'
includeWithFlags ':tomcat', 'java', 'publish', 'relocate'
includeWithFlags ':tomcat8.0', 'java', 'publish', 'relocate', 'no_aggregation'
includeWithFlags ':zipkin', 'java', 'publish', 'relocate'
includeWithFlags ':zookeeper', 'java', 'publish', 'relocate'
// Unpublished Java projects
includeWithFlags ':benchmarks', 'java'
includeWithFlags ':it', 'java', 'relocate'
includeWithFlags ':testing-internal', 'java', 'relocate'
// Site generation project
includeWithFlags ':site'