forked from spring-projects/spring-boot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle
More file actions
489 lines (470 loc) · 22 KB
/
settings.gradle
File metadata and controls
489 lines (470 loc) · 22 KB
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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
/*
* Copyright 2012-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the License);
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
pluginManagement {
evaluate(new File("${rootDir}/buildSrc/SpringRepositorySupport.groovy")).apply(this)
repositories {
mavenCentral()
gradlePluginPortal()
spring.mavenRepositories()
}
resolutionStrategy {
eachPlugin {
if (requested.id.id == "org.jetbrains.kotlin.jvm") {
useVersion "${kotlinVersion}"
}
if (requested.id.id == "org.jetbrains.kotlin.plugin.spring") {
useVersion "${kotlinVersion}"
}
if (requested.id.id == "org.jetbrains.kotlin.plugin.serialization") {
useVersion "${kotlinVersion}"
}
}
}
includeBuild("gradle/plugins")
}
plugins {
id "io.spring.develocity.conventions" version "0.0.25"
id "org.springframework.boot.cycle-detection"
}
rootProject.name="spring-boot-build"
enableFeaturePreview("STABLE_CONFIGURATION_CACHE")
settings.gradle.projectsLoaded {
develocity {
buildScan {
def toolchainVersion = settings.gradle.rootProject.findProperty('toolchainVersion')
if (toolchainVersion != null) {
value('Toolchain version', toolchainVersion)
}
}
}
}
include "platform:spring-boot-dependencies"
include "platform:spring-boot-internal-dependencies"
include "test-support:spring-boot-test-support"
include "test-support:spring-boot-docker-test-support"
include "test-support:spring-boot-gradle-test-support"
include "configuration-metadata:spring-boot-configuration-metadata"
include "configuration-metadata:spring-boot-configuration-metadata-changelog-generator"
include "configuration-metadata:spring-boot-configuration-processor"
include "core:spring-boot"
include "core:spring-boot-autoconfigure"
include "core:spring-boot-autoconfigure-processor"
include "core:spring-boot-docker-compose"
include "core:spring-boot-properties-migrator"
include "core:spring-boot-test"
include "core:spring-boot-test-autoconfigure"
include "core:spring-boot-testcontainers"
include "module:spring-boot-activemq"
include "module:spring-boot-actuator"
include "module:spring-boot-actuator-autoconfigure"
include "module:spring-boot-amqp"
include "module:spring-boot-artemis"
include "module:spring-boot-autoconfigure-classic"
include "module:spring-boot-autoconfigure-classic-modules"
include "module:spring-boot-batch"
include "module:spring-boot-batch-jdbc"
include "module:spring-boot-cache"
include "module:spring-boot-cache-test"
include "module:spring-boot-cassandra"
include "module:spring-boot-cloudfoundry"
include "module:spring-boot-couchbase"
include "module:spring-boot-data-cassandra"
include "module:spring-boot-data-cassandra-test"
include "module:spring-boot-data-commons"
include "module:spring-boot-data-couchbase"
include "module:spring-boot-data-couchbase-test"
include "module:spring-boot-data-elasticsearch"
include "module:spring-boot-data-elasticsearch-test"
include "module:spring-boot-data-jdbc"
include "module:spring-boot-data-jdbc-test"
include "module:spring-boot-data-jpa"
include "module:spring-boot-data-jpa-test"
include "module:spring-boot-data-ldap"
include "module:spring-boot-data-ldap-test"
include "module:spring-boot-data-mongodb"
include "module:spring-boot-data-mongodb-test"
include "module:spring-boot-data-neo4j"
include "module:spring-boot-data-neo4j-test"
include "module:spring-boot-data-r2dbc"
include "module:spring-boot-data-r2dbc-test"
include "module:spring-boot-data-redis"
include "module:spring-boot-data-redis-test"
include "module:spring-boot-data-rest"
include "module:spring-boot-devtools"
include "module:spring-boot-elasticsearch"
include "module:spring-boot-flyway"
include "module:spring-boot-freemarker"
include "module:spring-boot-graphql"
include "module:spring-boot-graphql-test"
include "module:spring-boot-groovy-templates"
include "module:spring-boot-gson"
include "module:spring-boot-h2console"
include "module:spring-boot-hateoas"
include "module:spring-boot-hazelcast"
include "module:spring-boot-health"
include "module:spring-boot-hibernate"
include "module:spring-boot-http-client"
include "module:spring-boot-http-codec"
include "module:spring-boot-http-converter"
include "module:spring-boot-integration"
include "module:spring-boot-jackson"
include "module:spring-boot-jackson2"
include "module:spring-boot-jdbc"
include "module:spring-boot-jdbc-test"
include "module:spring-boot-jersey"
include "module:spring-boot-jetty"
include "module:spring-boot-jms"
include "module:spring-boot-jooq"
include "module:spring-boot-jooq-test"
include "module:spring-boot-jpa"
include "module:spring-boot-jpa-test"
include "module:spring-boot-jsonb"
include "module:spring-boot-kafka"
include "module:spring-boot-kotlinx-serialization-json"
include "module:spring-boot-ldap"
include "module:spring-boot-liquibase"
include "module:spring-boot-mail"
include "module:spring-boot-micrometer-metrics"
include "module:spring-boot-micrometer-metrics-test"
include "module:spring-boot-micrometer-observation"
include "module:spring-boot-micrometer-tracing"
include "module:spring-boot-micrometer-tracing-brave"
include "module:spring-boot-micrometer-tracing-opentelemetry"
include "module:spring-boot-micrometer-tracing-test"
include "module:spring-boot-mongodb"
include "module:spring-boot-mustache"
include "module:spring-boot-neo4j"
include "module:spring-boot-netty"
include "module:spring-boot-opentelemetry"
include "module:spring-boot-persistence"
include "module:spring-boot-pulsar"
include "module:spring-boot-quartz"
include "module:spring-boot-r2dbc"
include "module:spring-boot-reactor"
include "module:spring-boot-reactor-netty"
include "module:spring-boot-restclient"
include "module:spring-boot-restclient-test"
include "module:spring-boot-restdocs"
include "module:spring-boot-resttestclient"
include "module:spring-boot-rsocket"
include "module:spring-boot-rsocket-test"
include "module:spring-boot-security"
include "module:spring-boot-security-test"
include "module:spring-boot-security-oauth2-authorization-server"
include "module:spring-boot-security-oauth2-client"
include "module:spring-boot-security-oauth2-resource-server"
include "module:spring-boot-security-saml2"
include "module:spring-boot-sendgrid"
include "module:spring-boot-servlet"
include "module:spring-boot-session"
include "module:spring-boot-session-data-redis"
include "module:spring-boot-session-jdbc"
include "module:spring-boot-sql"
include "module:spring-boot-test-classic-modules"
include "module:spring-boot-thymeleaf"
include "module:spring-boot-tomcat"
include "module:spring-boot-transaction"
include "module:spring-boot-validation"
include "module:spring-boot-web-server"
include "module:spring-boot-web-server-test"
include "module:spring-boot-webclient"
include "module:spring-boot-webclient-test"
include "module:spring-boot-webflux"
include "module:spring-boot-webflux-test"
include "module:spring-boot-webmvc"
include "module:spring-boot-webmvc-test"
include "module:spring-boot-webtestclient"
include "module:spring-boot-webservices"
include "module:spring-boot-webservices-test"
include "module:spring-boot-websocket"
include "module:spring-boot-zipkin"
include "starter:spring-boot-starter"
include "starter:spring-boot-starter-activemq"
include "starter:spring-boot-starter-activemq-test"
include "starter:spring-boot-starter-actuator"
include "starter:spring-boot-starter-actuator-test"
include "starter:spring-boot-starter-amqp"
include "starter:spring-boot-starter-amqp-test"
include "starter:spring-boot-starter-artemis"
include "starter:spring-boot-starter-artemis-test"
include "starter:spring-boot-starter-aspectj"
include "starter:spring-boot-starter-aspectj-test"
include "starter:spring-boot-starter-batch"
include "starter:spring-boot-starter-batch-jdbc"
include "starter:spring-boot-starter-batch-jdbc-test"
include "starter:spring-boot-starter-batch-test"
include "starter:spring-boot-starter-cache"
include "starter:spring-boot-starter-cache-test"
include "starter:spring-boot-starter-cassandra"
include "starter:spring-boot-starter-cassandra-test"
include "starter:spring-boot-starter-classic"
include "starter:spring-boot-starter-cloudfoundry"
include "starter:spring-boot-starter-cloudfoundry-test"
include "starter:spring-boot-starter-couchbase"
include "starter:spring-boot-starter-couchbase-test"
include "starter:spring-boot-starter-data-cassandra"
include "starter:spring-boot-starter-data-cassandra-test"
include "starter:spring-boot-starter-data-cassandra-reactive"
include "starter:spring-boot-starter-data-cassandra-reactive-test"
include "starter:spring-boot-starter-data-couchbase"
include "starter:spring-boot-starter-data-couchbase-test"
include "starter:spring-boot-starter-data-couchbase-reactive"
include "starter:spring-boot-starter-data-couchbase-reactive-test"
include "starter:spring-boot-starter-data-elasticsearch"
include "starter:spring-boot-starter-data-elasticsearch-test"
include "starter:spring-boot-starter-data-jdbc"
include "starter:spring-boot-starter-data-jdbc-test"
include "starter:spring-boot-starter-data-jpa"
include "starter:spring-boot-starter-data-jpa-test"
include "starter:spring-boot-starter-data-ldap"
include "starter:spring-boot-starter-data-ldap-test"
include "starter:spring-boot-starter-data-mongodb"
include "starter:spring-boot-starter-data-mongodb-test"
include "starter:spring-boot-starter-data-mongodb-reactive"
include "starter:spring-boot-starter-data-mongodb-reactive-test"
include "starter:spring-boot-starter-data-neo4j"
include "starter:spring-boot-starter-data-neo4j-test"
include "starter:spring-boot-starter-data-r2dbc"
include "starter:spring-boot-starter-data-r2dbc-test"
include "starter:spring-boot-starter-data-redis"
include "starter:spring-boot-starter-data-redis-test"
include "starter:spring-boot-starter-data-redis-reactive"
include "starter:spring-boot-starter-data-redis-reactive-test"
include "starter:spring-boot-starter-data-rest"
include "starter:spring-boot-starter-data-rest-test"
include "starter:spring-boot-starter-elasticsearch"
include "starter:spring-boot-starter-elasticsearch-test"
include "starter:spring-boot-starter-flyway"
include "starter:spring-boot-starter-flyway-test"
include "starter:spring-boot-starter-freemarker"
include "starter:spring-boot-starter-freemarker-test"
include "starter:spring-boot-starter-graphql"
include "starter:spring-boot-starter-graphql-test"
include "starter:spring-boot-starter-groovy-templates"
include "starter:spring-boot-starter-groovy-templates-test"
include "starter:spring-boot-starter-gson"
include "starter:spring-boot-starter-gson-test"
include "starter:spring-boot-starter-hateoas"
include "starter:spring-boot-starter-hateoas-test"
include "starter:spring-boot-starter-hazelcast"
include "starter:spring-boot-starter-hazelcast-test"
include "starter:spring-boot-starter-integration"
include "starter:spring-boot-starter-integration-test"
include "starter:spring-boot-starter-jackson"
include "starter:spring-boot-starter-jackson-test"
include "starter:spring-boot-starter-jdbc"
include "starter:spring-boot-starter-jdbc-test"
include "starter:spring-boot-starter-jersey"
include "starter:spring-boot-starter-jersey-test"
include "starter:spring-boot-starter-jetty"
include "starter:spring-boot-starter-jetty-runtime"
include "starter:spring-boot-starter-jms"
include "starter:spring-boot-starter-jms-test"
include "starter:spring-boot-starter-jooq"
include "starter:spring-boot-starter-jooq-test"
include "starter:spring-boot-starter-json"
include "starter:spring-boot-starter-jsonb"
include "starter:spring-boot-starter-jsonb-test"
include "starter:spring-boot-starter-kafka"
include "starter:spring-boot-starter-kafka-test"
include "starter:spring-boot-starter-kotlinx-serialization-json"
include "starter:spring-boot-starter-kotlinx-serialization-json-test"
include "starter:spring-boot-starter-ldap"
include "starter:spring-boot-starter-ldap-test"
include "starter:spring-boot-starter-liquibase"
include "starter:spring-boot-starter-liquibase-test"
include "starter:spring-boot-starter-log4j2"
include "starter:spring-boot-starter-logback"
include "starter:spring-boot-starter-logging"
include "starter:spring-boot-starter-mail"
include "starter:spring-boot-starter-mail-test"
include "starter:spring-boot-starter-micrometer-metrics"
include "starter:spring-boot-starter-micrometer-metrics-test"
include "starter:spring-boot-starter-mongodb"
include "starter:spring-boot-starter-mongodb-test"
include "starter:spring-boot-starter-mustache"
include "starter:spring-boot-starter-mustache-test"
include "starter:spring-boot-starter-neo4j"
include "starter:spring-boot-starter-neo4j-test"
include "starter:spring-boot-starter-oauth2-authorization-server"
include "starter:spring-boot-starter-oauth2-client"
include "starter:spring-boot-starter-oauth2-resource-server"
include "starter:spring-boot-starter-opentelemetry"
include "starter:spring-boot-starter-opentelemetry-test"
include "starter:spring-boot-starter-parent"
include "starter:spring-boot-starter-pulsar"
include "starter:spring-boot-starter-pulsar-test"
include "starter:spring-boot-starter-quartz"
include "starter:spring-boot-starter-quartz-test"
include "starter:spring-boot-starter-r2dbc"
include "starter:spring-boot-starter-r2dbc-test"
include "starter:spring-boot-starter-reactor-netty"
include "starter:spring-boot-starter-restclient"
include "starter:spring-boot-starter-restclient-test"
include "starter:spring-boot-starter-rsocket"
include "starter:spring-boot-starter-rsocket-test"
include "starter:spring-boot-starter-security"
include "starter:spring-boot-starter-security-test"
include "starter:spring-boot-starter-security-oauth2-authorization-server"
include "starter:spring-boot-starter-security-oauth2-authorization-server-test"
include "starter:spring-boot-starter-security-oauth2-client"
include "starter:spring-boot-starter-security-oauth2-client-test"
include "starter:spring-boot-starter-security-oauth2-resource-server"
include "starter:spring-boot-starter-security-oauth2-resource-server-test"
include "starter:spring-boot-starter-security-saml2"
include "starter:spring-boot-starter-security-saml2-test"
include "starter:spring-boot-starter-sendgrid"
include "starter:spring-boot-starter-sendgrid-test"
include "starter:spring-boot-starter-session-data-redis"
include "starter:spring-boot-starter-session-data-redis-test"
include "starter:spring-boot-starter-session-jdbc"
include "starter:spring-boot-starter-session-jdbc-test"
include "starter:spring-boot-starter-test"
include "starter:spring-boot-starter-test-classic"
include "starter:spring-boot-starter-thymeleaf"
include "starter:spring-boot-starter-thymeleaf-test"
include "starter:spring-boot-starter-tomcat"
include "starter:spring-boot-starter-tomcat-runtime"
include "starter:spring-boot-starter-validation"
include "starter:spring-boot-starter-validation-test"
include "starter:spring-boot-starter-web"
include "starter:spring-boot-starter-web-services"
include "starter:spring-boot-starter-webclient"
include "starter:spring-boot-starter-webclient-test"
include "starter:spring-boot-starter-webflux"
include "starter:spring-boot-starter-webflux-test"
include "starter:spring-boot-starter-webmvc"
include "starter:spring-boot-starter-webmvc-test"
include "starter:spring-boot-starter-webservices"
include "starter:spring-boot-starter-webservices-test"
include "starter:spring-boot-starter-websocket"
include "starter:spring-boot-starter-websocket-test"
include "starter:spring-boot-starter-zipkin"
include "starter:spring-boot-starter-zipkin-test"
include "loader:spring-boot-jarmode-tools"
include "loader:spring-boot-loader"
include "loader:spring-boot-loader-tools"
include "buildpack:spring-boot-buildpack-platform"
include "build-plugin:spring-boot-antlib"
include "build-plugin:spring-boot-gradle-plugin"
include "build-plugin:spring-boot-maven-plugin"
include "cli:spring-boot-cli"
include "documentation:spring-boot-actuator-docs"
include "documentation:spring-boot-docs"
include ":smoke-test:spring-boot-smoke-test-activemq"
include ":smoke-test:spring-boot-smoke-test-activemq-embedded"
include ":smoke-test:spring-boot-smoke-test-actuator"
include ":smoke-test:spring-boot-smoke-test-actuator-custom-security"
include ":smoke-test:spring-boot-smoke-test-actuator-extension"
include ":smoke-test:spring-boot-smoke-test-actuator-log4j2"
include ":smoke-test:spring-boot-smoke-test-actuator-noweb"
include ":smoke-test:spring-boot-smoke-test-actuator-ui"
include ":smoke-test:spring-boot-smoke-test-amqp"
include ":smoke-test:spring-boot-smoke-test-ant"
include ":smoke-test:spring-boot-smoke-test-artemis"
include ":smoke-test:spring-boot-smoke-test-aspectj"
include ":smoke-test:spring-boot-smoke-test-autoconfigure-classic"
include ":smoke-test:spring-boot-smoke-test-batch"
include ":smoke-test:spring-boot-smoke-test-batch-jdbc"
include ":smoke-test:spring-boot-smoke-test-bootstrap-registry"
include ":smoke-test:spring-boot-smoke-test-cache"
include ":smoke-test:spring-boot-smoke-test-config"
include ":smoke-test:spring-boot-smoke-test-data-cassandra"
include ":smoke-test:spring-boot-smoke-test-data-couchbase"
include ":smoke-test:spring-boot-smoke-test-data-elasticsearch"
include ":smoke-test:spring-boot-smoke-test-data-jdbc"
include ":smoke-test:spring-boot-smoke-test-data-jpa"
include ":smoke-test:spring-boot-smoke-test-data-ldap"
include ":smoke-test:spring-boot-smoke-test-data-mongodb"
include ":smoke-test:spring-boot-smoke-test-data-r2dbc"
include ":smoke-test:spring-boot-smoke-test-data-r2dbc-flyway"
include ":smoke-test:spring-boot-smoke-test-data-r2dbc-liquibase"
include ":smoke-test:spring-boot-smoke-test-data-redis"
include ":smoke-test:spring-boot-smoke-test-data-rest"
include ":smoke-test:spring-boot-smoke-test-devtools"
include ":smoke-test:spring-boot-smoke-test-flyway"
include ":smoke-test:spring-boot-smoke-test-graphql"
include ":smoke-test:spring-boot-smoke-test-hateoas"
include ":smoke-test:spring-boot-smoke-test-hibernate"
include ":smoke-test:spring-boot-smoke-test-integration"
include ":smoke-test:spring-boot-smoke-test-jackson2-mixed"
include ":smoke-test:spring-boot-smoke-test-jackson2-only"
include ":smoke-test:spring-boot-smoke-test-jersey"
include ":smoke-test:spring-boot-smoke-test-jetty"
include ":smoke-test:spring-boot-smoke-test-jetty-jsp"
include ":smoke-test:spring-boot-smoke-test-jetty-ssl"
include ":smoke-test:spring-boot-smoke-test-kafka"
include ":smoke-test:spring-boot-smoke-test-liquibase"
include ":smoke-test:spring-boot-smoke-test-log4j2"
include ":smoke-test:spring-boot-smoke-test-logback"
include ":smoke-test:spring-boot-smoke-test-oauth2-authorization-server"
include ":smoke-test:spring-boot-smoke-test-oauth2-client"
include ":smoke-test:spring-boot-smoke-test-oauth2-resource-server"
include ":smoke-test:spring-boot-smoke-test-parent-context"
include ":smoke-test:spring-boot-smoke-test-profile"
include ":smoke-test:spring-boot-smoke-test-prometheus"
include ":smoke-test:spring-boot-smoke-test-property-validation"
include ":smoke-test:spring-boot-smoke-test-pulsar"
include ":smoke-test:spring-boot-smoke-test-quartz"
include ":smoke-test:spring-boot-smoke-test-reactive-oauth2-client"
include ":smoke-test:spring-boot-smoke-test-reactive-oauth2-resource-server"
include ":smoke-test:spring-boot-smoke-test-rsocket"
include ":smoke-test:spring-boot-smoke-test-saml2-service-provider"
include ":smoke-test:spring-boot-smoke-test-secure"
include ":smoke-test:spring-boot-smoke-test-secure-jersey"
include ":smoke-test:spring-boot-smoke-test-secure-webflux"
include ":smoke-test:spring-boot-smoke-test-servlet"
include ":smoke-test:spring-boot-smoke-test-session-jdbc"
include ":smoke-test:spring-boot-smoke-test-session-data-redis"
include ":smoke-test:spring-boot-smoke-test-session-data-redis-webflux"
include ":smoke-test:spring-boot-smoke-test-simple"
include ":smoke-test:spring-boot-smoke-test-structured-logging"
include ":smoke-test:spring-boot-smoke-test-structured-logging-log4j2"
include ":smoke-test:spring-boot-smoke-test-test"
include ":smoke-test:spring-boot-smoke-test-test-nomockito"
include ":smoke-test:spring-boot-smoke-test-testng"
include ":smoke-test:spring-boot-smoke-test-tomcat"
include ":smoke-test:spring-boot-smoke-test-tomcat-jsp"
include ":smoke-test:spring-boot-smoke-test-tomcat-multi-connectors"
include ":smoke-test:spring-boot-smoke-test-tomcat-ssl"
include ":smoke-test:spring-boot-smoke-test-traditional"
include ":smoke-test:spring-boot-smoke-test-war"
include ":smoke-test:spring-boot-smoke-test-web-application-type"
include ":smoke-test:spring-boot-smoke-test-web-freemarker"
include ":smoke-test:spring-boot-smoke-test-web-groovy-templates"
include ":smoke-test:spring-boot-smoke-test-web-jsp"
include ":smoke-test:spring-boot-smoke-test-web-method-security"
include ":smoke-test:spring-boot-smoke-test-web-mustache"
include ":smoke-test:spring-boot-smoke-test-web-secure"
include ":smoke-test:spring-boot-smoke-test-web-secure-custom"
include ":smoke-test:spring-boot-smoke-test-web-secure-jdbc"
include ":smoke-test:spring-boot-smoke-test-web-static"
include ":smoke-test:spring-boot-smoke-test-web-thymeleaf"
include ":smoke-test:spring-boot-smoke-test-webflux"
include ":smoke-test:spring-boot-smoke-test-webflux-coroutines"
include ":smoke-test:spring-boot-smoke-test-webservices"
include ":smoke-test:spring-boot-smoke-test-websocket-jetty"
include ":smoke-test:spring-boot-smoke-test-websocket-tomcat"
include ":smoke-test:spring-boot-smoke-test-xml"
include ":integration-test:spring-boot-actuator-integration-tests"
include ":integration-test:spring-boot-configuration-processor-integration-tests"
include ":integration-test:spring-boot-integration-tests"
include ":integration-test:spring-boot-loader-integration-tests"
include ":integration-test:spring-boot-server-integration-tests"
include ":integration-test:spring-boot-sni-integration-tests"
include ":integration-test:spring-boot-test-integration-tests"
include ":system-test:spring-boot-deployment-system-tests"
include ":system-test:spring-boot-image-system-tests"