forked from line/armeria
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
61 lines (54 loc) · 3.66 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
49
50
51
52
53
54
55
56
57
58
59
60
61
rootProject.name = 'armeria'
apply from: "${rootDir}/gradle/scripts/settings-flags.gradle"
// Published BOM projects
includeWithFlags ':bom', 'bom'
// Published Java projects
includeWithFlags ':brave', 'java', 'publish', 'relocate'
includeWithFlags ':core', 'java', 'publish', 'shade', 'trim'
includeWithFlags ':rxjava', 'java', 'publish', 'relocate'
includeWithFlags ':grpc', 'java', 'publish', 'relocate'
includeWithFlags ':grpc-protocol', '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-actuator-autoconfigure', 'java', 'publish', 'relocate'
includeWithFlags ':spring:boot-actuator-starter', 'java', 'publish', 'relocate'
includeWithFlags ':spring:boot-autoconfigure', 'java', 'publish', 'relocate'
includeWithFlags ':spring:boot-starter', 'java', 'publish', 'relocate'
includeWithFlags ':spring:boot-webflux-autoconfigure', 'java', 'publish', 'relocate'
includeWithFlags ':spring:boot-webflux-starter', 'java', 'publish', 'relocate'
includeWithFlags ':spring:boot1-autoconfigure', 'java', 'publish', 'relocate'
includeWithFlags ':spring:boot1-starter', 'java', 'publish', 'relocate'
includeWithFlags ':testing:common', 'java', 'publish', 'relocate'
includeWithFlags ':testing:junit', 'java', 'publish', 'relocate'
includeWithFlags ':testing:junit4', '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 ':tomcat8.5', 'java', 'publish', 'relocate', 'no_aggregation'
includeWithFlags ':zipkin', 'java', 'publish', 'relocate'
includeWithFlags ':zookeeper', 'java', 'publish', 'relocate'
includeWithFlags ':saml', 'java', 'publish', 'relocate'
// Unpublished Java projects
includeWithFlags ':benchmarks', 'java'
includeWithFlags ':it:server', 'java', 'relocate'
includeWithFlags ':it:spring:boot-tomcat', 'java', 'relocate'
includeWithFlags ':it:spring:boot-tomcat8.5', 'java', 'relocate'
includeWithFlags ':testing-internal', 'java', 'relocate'
includeWithFlags ':thrift0.11', 'java', 'relocate'
// Unpublished non-Java projects
includeWithFlags ':docs-client'
// Site generation project
includeWithFlags ':site'
// Examples
includeWithFlags ':examples:annotated-http-service', 'java'
includeWithFlags ':examples:grpc-service', 'java'
includeWithFlags ':examples:proxy-server', 'java'
includeWithFlags ':examples:saml-service-provider', 'java'
includeWithFlags ':examples:server-sent-events', 'java'
includeWithFlags ':examples:spring-boot-minimal', 'java'
includeWithFlags ':examples:spring-boot-tomcat', 'java'
includeWithFlags ':examples:spring-boot-webflux', 'java'
includeWithFlags ':examples:static-files', 'java'