forked from line/armeria
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle
84 lines (75 loc) · 5.42 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
rootProject.name = 'armeria'
apply from: "${rootDir}/gradle/scripts/settings-flags.gradle"
// Published BOM projects
includeWithFlags ':bom', 'bom', 'publish'
// Published Java projects
includeWithFlags ':brave', 'java', 'publish', 'relocate'
includeWithFlags ':core', 'java', 'publish', 'shade', 'trim'
includeWithFlags ':eureka', '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 ':rxjava', 'java', 'publish', 'relocate'
includeWithFlags ':rxjava2', '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 ':dropwizard', 'java', 'publish', 'relocate'
includeWithFlags ':dropwizard1', 'java', 'publish', 'relocate', 'no_aggregation'
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.5', 'java', 'publish', 'relocate', 'no_aggregation'
includeWithFlags ':zookeeper', 'java', 'publish', 'relocate'
includeWithFlags ':saml', 'java', 'publish', 'relocate'
includeWithFlags ':bucket4j', 'java', 'publish', 'relocate'
// Published Javadoc-only projects
includeWithFlags ':javadoc', 'java', 'publish', 'no_aggregation'
// Unpublished Java projects
includeWithFlags ':annotation-processor', 'java'
includeWithFlags ':benchmarks', 'java'
includeWithFlags ':it:context-storage', '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.12', 'java', 'relocate'
// Unpublished non-Java projects
includeWithFlags ':docs-client'
// Site generation project
includeWithFlags ':site'
// Examples
includeWithFlags ':examples:annotated-http-service', 'java'
includeWithFlags ':examples:context-propagation-dagger-example', 'java'
project(':examples:context-propagation-dagger-example').projectDir = file('examples/context-propagation/dagger')
includeWithFlags ':examples:context-propagation-manual-example', 'java'
project(':examples:context-propagation-manual-example').projectDir = file('examples/context-propagation/manual')
includeWithFlags ':examples:context-propagation-rxjava-example', 'java'
project(':examples:context-propagation-rxjava-example').projectDir = file('examples/context-propagation/rxjava')
includeWithFlags ':examples:context-propagation-kotlin-example', 'java'
project(':examples:context-propagation-kotlin-example').projectDir = file('examples/context-propagation/kotlin')
includeWithFlags ':examples:dropwizard-example', 'java'
project(':examples:dropwizard-example').projectDir = file('examples/dropwizard')
includeWithFlags ':examples:grpc-example', 'java'
project(':examples:grpc-example').projectDir = file('examples/grpc')
includeWithFlags ':examples:grpc-kotlin', 'java'
includeWithFlags ':examples:grpc-reactor', 'java', 'reactor-grpc'
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-minimal-kotlin', 'java'
includeWithFlags ':examples:spring-boot-tomcat', 'java'
includeWithFlags ':examples:spring-boot-webflux', 'java'
includeWithFlags ':examples:static-files', 'java'