-
Notifications
You must be signed in to change notification settings - Fork 926
/
Copy pathsettings.gradle
194 lines (181 loc) · 13.3 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
plugins {
// This plugin should be applied in settings.gradle, not build.gradle.
// https://github.com/gradle/foojay-toolchains/issues/15
//
// If Gradle can’t find a locally available toolchain that matches the requirements of the build, it can
// automatically download one based on the foojay Disco API.
// https://docs.gradle.org/8.1.1/userguide/toolchains.html#sec:provisioning
id("org.gradle.toolchains.foojay-resolver") version "0.5.0"
}
toolchainManagement {
jvm {
javaRepositories {
repository("foojay") {
resolverClass = org.gradle.toolchains.foojay.FoojayToolchainResolver
}
}
}
}
rootProject.name = 'armeria'
apply from: "${rootDir}/gradle/scripts/settings-flags.gradle"
// Published BOM projects
includeWithFlags ':bom', 'bom'
// Published version catalog projects
includeWithFlags ':version-catalog', 'version-catalog'
// Published Java projects
includeWithFlags ':annotation-processor', 'java', 'publish', 'relocate'
includeWithFlags ':brave', 'java', 'publish', 'relocate'
includeWithFlags ':core', 'java', 'publish', 'shade', 'trim'
includeWithFlags ':eureka', 'java', 'publish', 'relocate'
includeWithFlags ':grpc', 'java', 'publish', 'relocate'
includeWithFlags ':grpc-kotlin', 'java', 'publish', 'relocate', 'kotlin-grpc', 'kotlin'
includeWithFlags ':grpc-protocol', 'java', 'publish', 'relocate'
includeWithFlags ':graphql', 'java', 'publish', 'relocate'
includeWithFlags ':graphql-protocol', 'java', 'publish', 'relocate'
includeWithFlags ':jetty9', 'java', 'publish', 'relocate'
includeWithFlags ':junit4', 'java', 'publish', 'relocate'
includeWithFlags ':junit5', 'java', 'publish', 'relocate'
includeWithFlags ':kafka', 'java', 'publish', 'relocate'
includeWithFlags ':kotlin', 'java', 'publish', 'relocate', 'kotlin'
includeWithFlags ':logback', 'java', 'publish', 'relocate'
includeWithFlags ':oauth2', 'java', 'publish', 'relocate'
includeWithFlags ':protobuf', 'java', 'publish', 'relocate'
includeWithFlags ':reactor3', 'java', 'publish', 'relocate'
includeWithFlags ':resilience4j2', 'java17', 'publish', 'relocate'
includeWithFlags ':resteasy', 'java', 'publish', 'relocate'
includeWithFlags ':retrofit2', 'java', 'publish', 'relocate'
includeWithFlags ':rxjava2', 'java', 'publish', 'relocate'
includeWithFlags ':rxjava3', 'java', 'publish', 'relocate'
includeWithFlags ':sangria_2.12', 'java', 'publish', 'relocate', 'no_aggregation', 'scala_2.12'
project(':sangria_2.12').projectDir = file('sangria/sangria_2.12')
includeWithFlags ':sangria_2.13', 'java', 'publish', 'relocate', 'scala_2.13'
// Sangria does not support Scala 3 yet. https://github.com/sangria-graphql/sangria/issues/649
project(':sangria_2.13').projectDir = file('sangria/sangria_2.13')
includeWithFlags ':scala_2.12', 'java', 'publish', 'relocate', 'no_aggregation', 'scala_2.12'
project(':scala_2.12').projectDir = file('scala/scala_2.12')
includeWithFlags ':scala_2.13', 'java', 'publish', 'relocate', 'scala_2.13'
project(':scala_2.13').projectDir = file('scala/scala_2.13')
includeWithFlags ':scala_3', 'java', 'publish', 'relocate', 'no_aggregation', 'scala_3'
project(':scala_3').projectDir = file('scala/scala_3')
includeWithFlags ':scalapb_2.12', 'java', 'publish', 'relocate', 'no_aggregation', 'scala_2.12'
project(':scalapb_2.12').projectDir = file('scalapb/scalapb_2.12')
includeWithFlags ':scalapb_2.13', 'java', 'publish', 'relocate', 'scala-grpc_2.13', 'scala_2.13'
project(':scalapb_2.13').projectDir = file('scalapb/scalapb_2.13')
includeWithFlags ':scalapb_3', 'java', 'publish', 'relocate', 'no_aggregation', 'scala_3'
project(':scalapb_3').projectDir = file('scalapb/scalapb_3')
includeWithFlags ':spring:boot2-actuator-autoconfigure', 'java', 'publish', 'relocate'
includeWithFlags ':spring:boot2-actuator-starter', 'java', 'publish', 'relocate'
includeWithFlags ':spring:boot2-autoconfigure', 'java', 'publish', 'relocate'
includeWithFlags ':spring:boot2-starter', 'java', 'publish', 'relocate'
includeWithFlags ':spring:boot2-webflux-autoconfigure', 'java', 'publish', 'relocate'
includeWithFlags ':spring:boot2-webflux-starter', 'java', 'publish', 'relocate'
includeWithFlags ':spring:boot3-actuator-autoconfigure', 'java17', 'publish', 'relocate', 'no_aggregation'
includeWithFlags ':spring:boot3-actuator-starter', 'java17', 'publish', 'relocate', 'no_aggregation'
includeWithFlags ':spring:boot3-autoconfigure', 'java17', 'publish', 'relocate', 'no_aggregation'
includeWithFlags ':spring:boot3-starter', 'java17', 'publish', 'relocate', 'no_aggregation'
includeWithFlags ':spring:boot3-webflux-autoconfigure', 'java17', 'publish', 'relocate', 'no_aggregation'
includeWithFlags ':spring:boot3-webflux-starter', 'java17', 'publish', 'relocate', 'no_aggregation'
includeWithFlags ':dropwizard1', 'java', 'publish', 'relocate', 'no_aggregation'
includeWithFlags ':dropwizard2', 'java', 'publish', 'relocate'
includeWithFlags ':thrift0.9', 'java', 'publish', 'relocate', 'no_aggregation'
project(':thrift0.9').projectDir = file('thrift/thrift0.9')
includeWithFlags ':thrift0.13', 'java', 'publish', 'relocate'
project(':thrift0.13').projectDir = file('thrift/thrift0.13')
includeWithFlags ':thrift0.14', 'java', 'publish', 'relocate', 'no_aggregation'
project(':thrift0.14').projectDir = file('thrift/thrift0.14')
includeWithFlags ':thrift0.15', 'java', 'publish', 'relocate', 'no_aggregation'
project(':thrift0.15').projectDir = file('thrift/thrift0.15')
includeWithFlags ':thrift0.16', 'java', 'publish', 'relocate', 'no_aggregation'
project(':thrift0.16').projectDir = file('thrift/thrift0.16')
includeWithFlags ':thrift0.17', 'java', 'publish', 'relocate', 'no_aggregation'
project(':thrift0.17').projectDir = file('thrift/thrift0.17')
includeWithFlags ':tomcat8', 'java', 'publish', 'relocate', 'no_aggregation'
includeWithFlags ':tomcat9', 'java', 'publish', 'relocate', 'no_aggregation'
includeWithFlags ':tomcat10', 'java11', 'publish', 'relocate'
includeWithFlags ':zookeeper3', 'java', 'publish', 'relocate'
includeWithFlags ':saml', 'java', 'publish', 'relocate'
includeWithFlags ':bucket4j', 'java', 'publish', 'relocate'
includeWithFlags ':consul', 'java', 'publish', 'relocate'
// Published Javadoc-only projects
includeWithFlags ':javadoc', 'java', 'publish', 'no_aggregation'
// Unpublished Java projects
includeWithFlags ':benchmarks:jmh', 'java', 'kotlin'
includeWithFlags ':benchmarks:ghz', 'java'
includeWithFlags ':it:builders', 'java'
includeWithFlags ':it:context-storage', 'java'
includeWithFlags ':it:dgs', 'java'
includeWithFlags ':it:flags-cyclic-dep', 'java'
includeWithFlags ':it:graphql-multipart', 'java17'
includeWithFlags ':it:grpcweb', 'java', 'akka-grpc_2.13'
includeWithFlags ':it:grpc:java', 'java'
includeWithFlags ':it:grpc:kotlin', 'java', 'relocate', 'kotlin-grpc', 'kotlin'
includeWithFlags ':it:grpc:scala', 'java', 'relocate', 'scala-grpc_2.13', 'scala_2.13'
includeWithFlags ':it:grpc:reactor', 'java', 'relocate', 'reactor-grpc'
includeWithFlags ':it:flags-provider', 'java', 'relocate'
includeWithFlags ':it:jackson-provider', 'java', 'relocate'
includeWithFlags ':it:kotlin', 'java', 'relocate', 'kotlin'
includeWithFlags ':it:micrometer1.3', 'java', 'relocate'
includeWithFlags ':it:multipart', 'java17', 'relocate'
includeWithFlags ':it:nio', 'java', 'relocate'
includeWithFlags ':it:okhttp', 'java', 'relocate'
includeWithFlags ':it:resilience4j', 'java17', 'relocate'
includeWithFlags ':it:server', 'java', 'relocate'
includeWithFlags ':it:spring:boot3-kotlin', 'java17', 'relocate', 'kotlin'
includeWithFlags ':it:spring:boot3-mixed', 'java17', 'relocate'
includeWithFlags ':it:spring:boot3-mixed-tomcat10', 'java17', 'relocate'
includeWithFlags ':it:spring:boot2-tomcat8', 'java17', 'relocate'
includeWithFlags ':it:spring:boot3-tomcat10', 'java17', 'relocate'
includeWithFlags ':it:spring:webflux-security', 'java17', 'relocate'
includeWithFlags ':it:thrift-fullcamel', 'java', 'relocate'
includeWithFlags ':it:thrift0.9.1', 'java', 'relocate'
includeWithFlags ':it:trace-context-leak', 'java', 'relocate'
includeWithFlags ':jetty9.3', 'java', 'relocate'
includeWithFlags ':testing-internal', 'java', 'relocate'
includeWithFlags ':thrift0.12', 'java', 'relocate'
project(':thrift0.12').projectDir = file('thrift/thrift0.12')
// Unpublished non-Java projects
includeWithFlags ':docs-client'
// Site generation project
includeWithFlags ':site'
// Examples
includeWithFlags ':examples:annotated-http-service', 'java11'
includeWithFlags ':examples:annotated-http-service-kotlin', 'java11', 'kotlin'
includeWithFlags ':examples:context-propagation-dagger-example', 'java11'
project(':examples:context-propagation-dagger-example').projectDir = file('examples/context-propagation/dagger')
includeWithFlags ':examples:context-propagation-kotlin-example', 'java11', 'kotlin'
project(':examples:context-propagation-kotlin-example').projectDir = file('examples/context-propagation/kotlin')
includeWithFlags ':examples:context-propagation-manual-example', 'java11'
project(':examples:context-propagation-manual-example').projectDir = file('examples/context-propagation/manual')
includeWithFlags ':examples:context-propagation-reactor-example', 'java11'
project(':examples:context-propagation-reactor-example').projectDir = file('examples/context-propagation/reactor')
includeWithFlags ':examples:context-propagation-rxjava-example', 'java11'
project(':examples:context-propagation-rxjava-example').projectDir = file('examples/context-propagation/rxjava')
// '*-example' pattern is used intentionally to avoid a cycling dependency issue between project('examples:*')
// and project(':*'). See https://github.com/gradle/gradle/issues/847 for more information.
includeWithFlags ':examples:dropwizard-example', 'java11'
project(':examples:dropwizard-example').projectDir = file('examples/dropwizard')
includeWithFlags ':examples:graphql-example', 'java11'
project(':examples:graphql-example').projectDir = file('examples/graphql')
includeWithFlags ':examples:graphql-kotlin-example', 'java11', 'kotlin'
project(':examples:graphql-kotlin-example').projectDir = file('examples/graphql-kotlin')
includeWithFlags ':examples:graphql-sangria-example', 'java11', 'scala_2.13'
project(':examples:graphql-sangria-example').projectDir = file('examples/graphql-sangria')
includeWithFlags ':examples:grpc-example', 'java11'
project(':examples:grpc-example').projectDir = file('examples/grpc')
includeWithFlags ':examples:grpc-kotlin', 'java11', 'kotlin-grpc', 'kotlin'
includeWithFlags ':examples:grpc-scala', 'java11', 'scala-grpc_2.13', 'scala_2.13'
includeWithFlags ':examples:grpc-reactor', 'java11', 'reactor-grpc'
includeWithFlags ':examples:proxy-server', 'java11'
includeWithFlags ':examples:resilience4j-spring', 'java17'
includeWithFlags ':examples:saml-service-provider', 'java11'
includeWithFlags ':examples:server-sent-events', 'java11'
includeWithFlags ':examples:spring-boot-minimal', 'java17'
includeWithFlags ':examples:spring-boot-minimal-kotlin', 'java17', 'kotlin'
includeWithFlags ':examples:spring-boot-tomcat', 'java17'
includeWithFlags ':examples:spring-boot-webflux', 'java17'
includeWithFlags ':examples:static-files', 'java11'
includeWithFlags ':examples:thrift', 'java11'
includeWithFlags ':examples:tutorials:grpc-tutorial', 'java11'
project(':examples:tutorials:grpc-tutorial').projectDir = file('examples/tutorials/grpc')
includeWithFlags ':examples:tutorials:rest-api-annotated-service', 'java11'
includeWithFlags ':examples:tutorials:thrift', 'java11'