| 
									
										
										
										
											2025-06-21 08:20:50 +08:00
										 |  |  | /* | 
					
						
							|  |  |  |  * 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. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-10 21:48:43 +08:00
										 |  |  | pluginManagement { | 
					
						
							| 
									
										
										
										
											2024-09-27 10:33:34 +08:00
										 |  |  | 	evaluate(new File("${rootDir}/buildSrc/SpringRepositorySupport.groovy")).apply(this) | 
					
						
							| 
									
										
										
										
											2020-01-10 21:48:43 +08:00
										 |  |  | 	repositories { | 
					
						
							|  |  |  | 		mavenCentral() | 
					
						
							|  |  |  | 		gradlePluginPortal() | 
					
						
							| 
									
										
										
										
											2025-07-02 22:39:31 +08:00
										 |  |  | 		spring.mavenRepositories() | 
					
						
							| 
									
										
										
										
											2020-01-10 21:48:43 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	resolutionStrategy { | 
					
						
							|  |  |  | 		eachPlugin { | 
					
						
							| 
									
										
										
										
											2020-01-23 03:24:37 +08:00
										 |  |  | 			if (requested.id.id == "org.jetbrains.kotlin.jvm") { | 
					
						
							| 
									
										
										
										
											2020-01-10 21:48:43 +08:00
										 |  |  | 				useVersion "${kotlinVersion}" | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2020-01-23 03:24:37 +08:00
										 |  |  | 			if (requested.id.id == "org.jetbrains.kotlin.plugin.spring") { | 
					
						
							| 
									
										
										
										
											2020-01-10 21:48:43 +08:00
										 |  |  | 				useVersion "${kotlinVersion}" | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2025-07-25 05:32:54 +08:00
										 |  |  | 			if (requested.id.id == "org.jetbrains.kotlin.plugin.serialization") { | 
					
						
							|  |  |  | 				useVersion "${kotlinVersion}" | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2020-01-10 21:48:43 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2025-03-22 21:39:33 +08:00
										 |  |  | 	includeBuild("gradle/plugins") | 
					
						
							| 
									
										
										
										
											2020-01-10 21:48:43 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | plugins { | 
					
						
							| 
									
										
										
										
											2024-10-01 19:35:48 +08:00
										 |  |  | 	id "io.spring.develocity.conventions" version "0.0.22" | 
					
						
							| 
									
										
										
										
											2025-03-22 21:39:33 +08:00
										 |  |  | 	id "org.springframework.boot.cycle-detection" | 
					
						
							| 
									
										
										
										
											2020-01-10 21:48:43 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-23 03:24:37 +08:00
										 |  |  | rootProject.name="spring-boot-build" | 
					
						
							| 
									
										
										
										
											2020-01-10 21:48:43 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-10 19:35:22 +08:00
										 |  |  | enableFeaturePreview("STABLE_CONFIGURATION_CACHE") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-25 22:42:21 +08:00
										 |  |  | settings.gradle.projectsLoaded { | 
					
						
							| 
									
										
										
										
											2024-04-26 16:04:20 +08:00
										 |  |  | 	develocity { | 
					
						
							| 
									
										
										
										
											2020-02-25 22:42:21 +08:00
										 |  |  | 		buildScan { | 
					
						
							| 
									
										
										
										
											2021-03-06 21:15:11 +08:00
										 |  |  | 			def toolchainVersion = settings.gradle.rootProject.findProperty('toolchainVersion') | 
					
						
							|  |  |  | 			if (toolchainVersion != null) { | 
					
						
							|  |  |  | 				value('Toolchain version', toolchainVersion) | 
					
						
							|  |  |  | 				tag("JDK-$toolchainVersion") | 
					
						
							| 
									
										
										
										
											2020-02-25 22:42:21 +08:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "platform:spring-boot-dependencies" | 
					
						
							|  |  |  | include "platform:spring-boot-internal-dependencies" | 
					
						
							| 
									
										
										
										
											2020-01-10 21:48:43 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | 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" | 
					
						
							| 
									
										
										
										
											2025-09-27 05:38:25 +08:00
										 |  |  | include "core:spring-boot-test-autoconfigure" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | 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" | 
					
						
							| 
									
										
										
										
											2025-07-26 00:28:45 +08:00
										 |  |  | include "module:spring-boot-autoconfigure-classic" | 
					
						
							|  |  |  | include "module:spring-boot-autoconfigure-classic-modules" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "module:spring-boot-batch" | 
					
						
							| 
									
										
										
										
											2025-09-11 22:59:41 +08:00
										 |  |  | include "module:spring-boot-batch-jdbc" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "module:spring-boot-cache" | 
					
						
							| 
									
										
										
										
											2025-09-09 23:17:35 +08:00
										 |  |  | include "module:spring-boot-cache-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "module:spring-boot-cassandra" | 
					
						
							|  |  |  | include "module:spring-boot-cloudfoundry" | 
					
						
							|  |  |  | include "module:spring-boot-couchbase" | 
					
						
							|  |  |  | include "module:spring-boot-data-cassandra" | 
					
						
							| 
									
										
										
										
											2025-09-09 23:17:35 +08:00
										 |  |  | include "module:spring-boot-data-cassandra-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "module:spring-boot-data-commons" | 
					
						
							|  |  |  | include "module:spring-boot-data-couchbase" | 
					
						
							| 
									
										
										
										
											2025-09-09 23:17:35 +08:00
										 |  |  | include "module:spring-boot-data-couchbase-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "module:spring-boot-data-elasticsearch" | 
					
						
							| 
									
										
										
										
											2025-09-09 23:17:35 +08:00
										 |  |  | include "module:spring-boot-data-elasticsearch-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "module:spring-boot-data-jdbc" | 
					
						
							| 
									
										
										
										
											2025-09-09 23:17:35 +08:00
										 |  |  | include "module:spring-boot-data-jdbc-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "module:spring-boot-data-jpa" | 
					
						
							| 
									
										
										
										
											2025-09-09 23:17:35 +08:00
										 |  |  | include "module:spring-boot-data-jpa-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "module:spring-boot-data-ldap" | 
					
						
							| 
									
										
										
										
											2025-09-09 23:17:35 +08:00
										 |  |  | include "module:spring-boot-data-ldap-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "module:spring-boot-data-mongodb" | 
					
						
							| 
									
										
										
										
											2025-09-09 23:17:35 +08:00
										 |  |  | include "module:spring-boot-data-mongodb-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "module:spring-boot-data-neo4j" | 
					
						
							| 
									
										
										
										
											2025-09-09 23:17:35 +08:00
										 |  |  | include "module:spring-boot-data-neo4j-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "module:spring-boot-data-r2dbc" | 
					
						
							| 
									
										
										
										
											2025-09-09 23:17:35 +08:00
										 |  |  | include "module:spring-boot-data-r2dbc-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "module:spring-boot-data-redis" | 
					
						
							| 
									
										
										
										
											2025-09-09 23:17:35 +08:00
										 |  |  | include "module:spring-boot-data-redis-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | 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-jdbc" | 
					
						
							| 
									
										
										
										
											2025-09-09 23:17:35 +08:00
										 |  |  | include "module:spring-boot-jdbc-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "module:spring-boot-jetty" | 
					
						
							|  |  |  | include "module:spring-boot-jms" | 
					
						
							|  |  |  | include "module:spring-boot-jooq" | 
					
						
							| 
									
										
										
										
											2025-09-09 23:17:35 +08:00
										 |  |  | include "module:spring-boot-jooq-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "module:spring-boot-jpa" | 
					
						
							| 
									
										
										
										
											2025-09-09 23:17:35 +08:00
										 |  |  | include "module:spring-boot-jpa-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "module:spring-boot-jsonb" | 
					
						
							|  |  |  | include "module:spring-boot-kafka" | 
					
						
							| 
									
										
										
										
											2025-07-25 05:32:54 +08:00
										 |  |  | include "module:spring-boot-kotlin-serialization" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "module:spring-boot-ldap" | 
					
						
							|  |  |  | include "module:spring-boot-liquibase" | 
					
						
							|  |  |  | include "module:spring-boot-mail" | 
					
						
							| 
									
										
										
										
											2025-08-21 05:09:14 +08:00
										 |  |  | include "module:spring-boot-micrometer-metrics" | 
					
						
							| 
									
										
										
										
											2025-09-09 23:17:35 +08:00
										 |  |  | include "module:spring-boot-micrometer-metrics-test" | 
					
						
							| 
									
										
										
										
											2025-08-21 05:09:14 +08:00
										 |  |  | include "module:spring-boot-micrometer-observation" | 
					
						
							|  |  |  | include "module:spring-boot-micrometer-tracing" | 
					
						
							| 
									
										
										
										
											2025-09-09 23:17:35 +08:00
										 |  |  | include "module:spring-boot-micrometer-tracing-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | 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" | 
					
						
							| 
									
										
										
										
											2025-09-16 00:00:52 +08:00
										 |  |  | include "module:spring-boot-persistence" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | 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" | 
					
						
							| 
									
										
										
										
											2025-09-09 23:17:35 +08:00
										 |  |  | include "module:spring-boot-restdocs" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "module:spring-boot-rsocket" | 
					
						
							| 
									
										
										
										
											2025-09-25 23:11:07 +08:00
										 |  |  | include "module:spring-boot-rsocket-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "module:spring-boot-security" | 
					
						
							| 
									
										
										
										
											2025-09-09 23:17:35 +08:00
										 |  |  | include "module:spring-boot-security-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | 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-mongodb" | 
					
						
							|  |  |  | include "module:spring-boot-session-data-redis" | 
					
						
							|  |  |  | include "module:spring-boot-session-hazelcast" | 
					
						
							|  |  |  | include "module:spring-boot-session-jdbc" | 
					
						
							|  |  |  | include "module:spring-boot-sql" | 
					
						
							| 
									
										
										
										
											2025-10-01 13:26:50 +08:00
										 |  |  | include "module:spring-boot-test-classic-modules" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "module:spring-boot-thymeleaf" | 
					
						
							|  |  |  | include "module:spring-boot-tomcat" | 
					
						
							|  |  |  | include "module:spring-boot-tx" | 
					
						
							|  |  |  | include "module:spring-boot-validation" | 
					
						
							|  |  |  | include "module:spring-boot-web-server" // FIXME move to core?
 | 
					
						
							|  |  |  | include "module:spring-boot-webclient" | 
					
						
							|  |  |  | include "module:spring-boot-webflux" | 
					
						
							| 
									
										
										
										
											2025-09-09 23:17:35 +08:00
										 |  |  | include "module:spring-boot-webflux-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "module:spring-boot-webmvc" | 
					
						
							| 
									
										
										
										
											2025-09-09 23:17:35 +08:00
										 |  |  | include "module:spring-boot-webmvc-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "module:spring-boot-webservices" | 
					
						
							| 
									
										
										
										
											2025-09-09 23:17:35 +08:00
										 |  |  | include "module:spring-boot-webservices-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "module:spring-boot-websocket" | 
					
						
							|  |  |  | include "module:spring-boot-zipkin" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | include "starter:spring-boot-starter" | 
					
						
							|  |  |  | include "starter:spring-boot-starter-activemq" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:57:10 +08:00
										 |  |  | include "starter:spring-boot-starter-activemq-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "starter:spring-boot-starter-actuator" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:56:40 +08:00
										 |  |  | include "starter:spring-boot-starter-actuator-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "starter:spring-boot-starter-amqp" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:57:10 +08:00
										 |  |  | include "starter:spring-boot-starter-amqp-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "starter:spring-boot-starter-artemis" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:57:10 +08:00
										 |  |  | include "starter:spring-boot-starter-artemis-test" | 
					
						
							| 
									
										
										
										
											2025-09-15 17:19:05 +08:00
										 |  |  | include "starter:spring-boot-starter-aspectj" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:57:10 +08:00
										 |  |  | include "starter:spring-boot-starter-aspectj-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "starter:spring-boot-starter-batch" | 
					
						
							| 
									
										
										
										
											2025-09-11 22:59:41 +08:00
										 |  |  | include "starter:spring-boot-starter-batch-jdbc" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:57:10 +08:00
										 |  |  | include "starter:spring-boot-starter-batch-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "starter:spring-boot-starter-cache" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:56:40 +08:00
										 |  |  | include "starter:spring-boot-starter-cache-test" | 
					
						
							| 
									
										
										
										
											2025-07-22 18:24:46 +08:00
										 |  |  | include "starter:spring-boot-starter-cassandra" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:57:10 +08:00
										 |  |  | include "starter:spring-boot-starter-cassandra-test" | 
					
						
							| 
									
										
										
										
											2025-07-26 00:28:45 +08:00
										 |  |  | include "starter:spring-boot-starter-classic" | 
					
						
							| 
									
										
										
										
											2025-07-24 21:30:43 +08:00
										 |  |  | include "starter:spring-boot-starter-cloudfoundry" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:57:10 +08:00
										 |  |  | include "starter:spring-boot-starter-cloudfoundry-test" | 
					
						
							| 
									
										
										
										
											2025-07-22 18:24:46 +08:00
										 |  |  | include "starter:spring-boot-starter-couchbase" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:57:10 +08:00
										 |  |  | include "starter:spring-boot-starter-couchbase-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "starter:spring-boot-starter-data-cassandra" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:56:40 +08:00
										 |  |  | include "starter:spring-boot-starter-data-cassandra-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "starter:spring-boot-starter-data-cassandra-reactive" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:56:40 +08:00
										 |  |  | include "starter:spring-boot-starter-data-cassandra-reactive-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "starter:spring-boot-starter-data-couchbase" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:56:40 +08:00
										 |  |  | include "starter:spring-boot-starter-data-couchbase-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "starter:spring-boot-starter-data-couchbase-reactive" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:56:40 +08:00
										 |  |  | include "starter:spring-boot-starter-data-couchbase-reactive-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "starter:spring-boot-starter-data-elasticsearch" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:56:40 +08:00
										 |  |  | include "starter:spring-boot-starter-data-elasticsearch-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "starter:spring-boot-starter-data-jdbc" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:56:40 +08:00
										 |  |  | include "starter:spring-boot-starter-data-jdbc-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "starter:spring-boot-starter-data-jpa" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:56:40 +08:00
										 |  |  | include "starter:spring-boot-starter-data-jpa-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "starter:spring-boot-starter-data-ldap" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:56:40 +08:00
										 |  |  | include "starter:spring-boot-starter-data-ldap-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "starter:spring-boot-starter-data-mongodb" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:56:40 +08:00
										 |  |  | include "starter:spring-boot-starter-data-mongodb-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "starter:spring-boot-starter-data-mongodb-reactive" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:56:40 +08:00
										 |  |  | include "starter:spring-boot-starter-data-mongodb-reactive-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "starter:spring-boot-starter-data-neo4j" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:56:40 +08:00
										 |  |  | include "starter:spring-boot-starter-data-neo4j-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "starter:spring-boot-starter-data-r2dbc" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:56:40 +08:00
										 |  |  | include "starter:spring-boot-starter-data-r2dbc-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "starter:spring-boot-starter-data-redis" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:56:40 +08:00
										 |  |  | include "starter:spring-boot-starter-data-redis-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "starter:spring-boot-starter-data-redis-reactive" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:56:40 +08:00
										 |  |  | include "starter:spring-boot-starter-data-redis-reactive-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "starter:spring-boot-starter-data-rest" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:57:10 +08:00
										 |  |  | include "starter:spring-boot-starter-data-rest-test" | 
					
						
							| 
									
										
										
										
											2025-07-22 18:24:46 +08:00
										 |  |  | include "starter:spring-boot-starter-elasticsearch" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:57:10 +08:00
										 |  |  | include "starter:spring-boot-starter-elasticsearch-test" | 
					
						
							| 
									
										
										
										
											2025-07-22 18:24:46 +08:00
										 |  |  | include "starter:spring-boot-starter-flyway" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:57:10 +08:00
										 |  |  | include "starter:spring-boot-starter-flyway-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "starter:spring-boot-starter-freemarker" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:57:10 +08:00
										 |  |  | include "starter:spring-boot-starter-freemarker-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "starter:spring-boot-starter-graphql" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:56:40 +08:00
										 |  |  | include "starter:spring-boot-starter-graphql-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "starter:spring-boot-starter-groovy-templates" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:57:10 +08:00
										 |  |  | include "starter:spring-boot-starter-groovy-templates-test" | 
					
						
							| 
									
										
										
										
											2025-07-22 18:24:46 +08:00
										 |  |  | include "starter:spring-boot-starter-gson" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:57:10 +08:00
										 |  |  | include "starter:spring-boot-starter-gson-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "starter:spring-boot-starter-hateoas" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:57:10 +08:00
										 |  |  | include "starter:spring-boot-starter-hateoas-test" | 
					
						
							| 
									
										
										
										
											2025-07-22 18:24:46 +08:00
										 |  |  | include "starter:spring-boot-starter-hazelcast" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:57:10 +08:00
										 |  |  | include "starter:spring-boot-starter-hazelcast-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "starter:spring-boot-starter-integration" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:57:10 +08:00
										 |  |  | include "starter:spring-boot-starter-integration-test" | 
					
						
							| 
									
										
										
										
											2025-07-22 18:24:46 +08:00
										 |  |  | include "starter:spring-boot-starter-jackson" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:57:10 +08:00
										 |  |  | include "starter:spring-boot-starter-jackson-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "starter:spring-boot-starter-jdbc" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:56:40 +08:00
										 |  |  | include "starter:spring-boot-starter-jdbc-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "starter:spring-boot-starter-jetty" | 
					
						
							| 
									
										
										
										
											2025-07-22 18:24:46 +08:00
										 |  |  | include "starter:spring-boot-starter-jms" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:57:10 +08:00
										 |  |  | include "starter:spring-boot-starter-jms-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "starter:spring-boot-starter-jooq" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:56:40 +08:00
										 |  |  | include "starter:spring-boot-starter-jooq-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "starter:spring-boot-starter-json" | 
					
						
							| 
									
										
										
										
											2025-07-24 21:30:43 +08:00
										 |  |  | include "starter:spring-boot-starter-jsonb" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:57:10 +08:00
										 |  |  | include "starter:spring-boot-starter-jsonb-test" | 
					
						
							| 
									
										
										
										
											2025-07-22 18:24:46 +08:00
										 |  |  | include "starter:spring-boot-starter-kafka" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:57:10 +08:00
										 |  |  | include "starter:spring-boot-starter-kafka-test" | 
					
						
							| 
									
										
										
										
											2025-07-25 05:32:54 +08:00
										 |  |  | include "starter:spring-boot-starter-kotlin-serialization" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:57:10 +08:00
										 |  |  | include "starter:spring-boot-starter-kotlin-serialization-test" | 
					
						
							| 
									
										
										
										
											2025-07-22 18:24:46 +08:00
										 |  |  | include "starter:spring-boot-starter-ldap" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:57:10 +08:00
										 |  |  | include "starter:spring-boot-starter-ldap-test" | 
					
						
							| 
									
										
										
										
											2025-07-22 18:24:46 +08:00
										 |  |  | include "starter:spring-boot-starter-liquibase" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:57:10 +08:00
										 |  |  | include "starter:spring-boot-starter-liquibase-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "starter:spring-boot-starter-log4j2" | 
					
						
							| 
									
										
										
										
											2025-07-22 18:24:46 +08:00
										 |  |  | include "starter:spring-boot-starter-logback" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "starter:spring-boot-starter-logging" | 
					
						
							|  |  |  | include "starter:spring-boot-starter-mail" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:57:10 +08:00
										 |  |  | include "starter:spring-boot-starter-mail-test" | 
					
						
							| 
									
										
										
										
											2025-07-22 18:24:46 +08:00
										 |  |  | include "starter:spring-boot-starter-mongodb" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:57:10 +08:00
										 |  |  | include "starter:spring-boot-starter-mongodb-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "starter:spring-boot-starter-mustache" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:57:10 +08:00
										 |  |  | include "starter:spring-boot-starter-mustache-test" | 
					
						
							| 
									
										
										
										
											2025-07-22 18:24:46 +08:00
										 |  |  | include "starter:spring-boot-starter-neo4j" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:57:10 +08:00
										 |  |  | include "starter:spring-boot-starter-neo4j-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "starter:spring-boot-starter-oauth2-authorization-server" | 
					
						
							|  |  |  | include "starter:spring-boot-starter-oauth2-client" | 
					
						
							|  |  |  | include "starter:spring-boot-starter-oauth2-resource-server" | 
					
						
							| 
									
										
										
										
											2025-07-22 18:24:46 +08:00
										 |  |  | include "starter:spring-boot-starter-opentelemetry" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:57:10 +08:00
										 |  |  | include "starter:spring-boot-starter-opentelemetry-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "starter:spring-boot-starter-parent" | 
					
						
							|  |  |  | include "starter:spring-boot-starter-pulsar" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:57:10 +08:00
										 |  |  | include "starter:spring-boot-starter-pulsar-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "starter:spring-boot-starter-pulsar-reactive" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:57:10 +08:00
										 |  |  | include "starter:spring-boot-starter-pulsar-reactive-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "starter:spring-boot-starter-quartz" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:57:10 +08:00
										 |  |  | include "starter:spring-boot-starter-quartz-test" | 
					
						
							| 
									
										
										
										
											2025-07-22 18:24:46 +08:00
										 |  |  | include "starter:spring-boot-starter-r2dbc" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:57:10 +08:00
										 |  |  | include "starter:spring-boot-starter-r2dbc-test" | 
					
						
							| 
									
										
										
										
											2025-07-24 21:30:43 +08:00
										 |  |  | include "starter:spring-boot-starter-reactor" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:57:10 +08:00
										 |  |  | include "starter:spring-boot-starter-reactor-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "starter:spring-boot-starter-reactor-netty" | 
					
						
							| 
									
										
										
										
											2025-07-22 18:24:46 +08:00
										 |  |  | include "starter:spring-boot-starter-restclient" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:56:40 +08:00
										 |  |  | include "starter:spring-boot-starter-restclient-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "starter:spring-boot-starter-rsocket" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:56:40 +08:00
										 |  |  | include "starter:spring-boot-starter-rsocket-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "starter:spring-boot-starter-security" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:56:40 +08:00
										 |  |  | include "starter:spring-boot-starter-security-test" | 
					
						
							| 
									
										
										
										
											2025-07-24 14:45:09 +08:00
										 |  |  | include "starter:spring-boot-starter-security-oauth2-authorization-server" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:57:10 +08:00
										 |  |  | include "starter:spring-boot-starter-security-oauth2-authorization-server-test" | 
					
						
							| 
									
										
										
										
											2025-07-24 14:45:09 +08:00
										 |  |  | include "starter:spring-boot-starter-security-oauth2-client" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:57:10 +08:00
										 |  |  | include "starter:spring-boot-starter-security-oauth2-client-test" | 
					
						
							| 
									
										
										
										
											2025-07-24 14:45:09 +08:00
										 |  |  | include "starter:spring-boot-starter-security-oauth2-resource-server" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:57:10 +08:00
										 |  |  | include "starter:spring-boot-starter-security-oauth2-resource-server-test" | 
					
						
							| 
									
										
										
										
											2025-07-22 18:24:46 +08:00
										 |  |  | include "starter:spring-boot-starter-security-saml2" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:57:10 +08:00
										 |  |  | include "starter:spring-boot-starter-security-saml2-test" | 
					
						
							| 
									
										
										
										
											2025-07-22 18:24:46 +08:00
										 |  |  | include "starter:spring-boot-starter-sendgrid" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:57:10 +08:00
										 |  |  | include "starter:spring-boot-starter-sendgrid-test" | 
					
						
							| 
									
										
										
										
											2025-07-22 18:24:46 +08:00
										 |  |  | include "starter:spring-boot-starter-session-data-mongodb" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:57:10 +08:00
										 |  |  | include "starter:spring-boot-starter-session-data-mongodb-test" | 
					
						
							| 
									
										
										
										
											2025-07-22 18:24:46 +08:00
										 |  |  | include "starter:spring-boot-starter-session-data-redis" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:57:10 +08:00
										 |  |  | include "starter:spring-boot-starter-session-data-redis-test" | 
					
						
							| 
									
										
										
										
											2025-07-22 18:24:46 +08:00
										 |  |  | include "starter:spring-boot-starter-session-hazelcast" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:57:10 +08:00
										 |  |  | include "starter:spring-boot-starter-session-hazelcast-test" | 
					
						
							| 
									
										
										
										
											2025-07-22 18:24:46 +08:00
										 |  |  | include "starter:spring-boot-starter-session-jdbc" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:57:10 +08:00
										 |  |  | include "starter:spring-boot-starter-session-jdbc-test" | 
					
						
							| 
									
										
										
										
											2025-07-24 21:30:43 +08:00
										 |  |  | include "starter:spring-boot-starter-sql" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:57:10 +08:00
										 |  |  | include "starter:spring-boot-starter-sql-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "starter:spring-boot-starter-test" | 
					
						
							| 
									
										
										
										
											2025-10-01 13:26:50 +08:00
										 |  |  | include "starter:spring-boot-starter-test-classic" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "starter:spring-boot-starter-thymeleaf" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:57:10 +08:00
										 |  |  | include "starter:spring-boot-starter-thymeleaf-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "starter:spring-boot-starter-tomcat" | 
					
						
							|  |  |  | include "starter:spring-boot-starter-validation" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:57:10 +08:00
										 |  |  | include "starter:spring-boot-starter-validation-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "starter:spring-boot-starter-web" | 
					
						
							| 
									
										
										
										
											2025-07-24 14:45:09 +08:00
										 |  |  | include "starter:spring-boot-starter-web-services" | 
					
						
							| 
									
										
										
										
											2025-07-22 18:24:46 +08:00
										 |  |  | include "starter:spring-boot-starter-webclient" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:57:10 +08:00
										 |  |  | include "starter:spring-boot-starter-webclient-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "starter:spring-boot-starter-webflux" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:56:40 +08:00
										 |  |  | include "starter:spring-boot-starter-webflux-test" | 
					
						
							| 
									
										
										
										
											2025-07-22 18:24:46 +08:00
										 |  |  | include "starter:spring-boot-starter-webmvc" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:56:40 +08:00
										 |  |  | include "starter:spring-boot-starter-webmvc-test" | 
					
						
							| 
									
										
										
										
											2025-07-22 18:24:46 +08:00
										 |  |  | include "starter:spring-boot-starter-webservices" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:56:40 +08:00
										 |  |  | include "starter:spring-boot-starter-webservices-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include "starter:spring-boot-starter-websocket" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:57:10 +08:00
										 |  |  | include "starter:spring-boot-starter-websocket-test" | 
					
						
							| 
									
										
										
										
											2025-07-22 18:24:46 +08:00
										 |  |  | include "starter:spring-boot-starter-zipkin" | 
					
						
							| 
									
										
										
										
											2025-10-01 08:57:10 +08:00
										 |  |  | include "starter:spring-boot-starter-zipkin-test" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 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" | 
					
						
							| 
									
										
										
										
											2025-09-15 17:19:05 +08:00
										 |  |  | include ":smoke-test:spring-boot-smoke-test-aspectj" | 
					
						
							| 
									
										
										
										
											2025-07-26 00:28:45 +08:00
										 |  |  | include ":smoke-test:spring-boot-smoke-test-autoconfigure-classic" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | include ":smoke-test:spring-boot-smoke-test-batch" | 
					
						
							| 
									
										
										
										
											2025-09-11 22:59:41 +08:00
										 |  |  | include ":smoke-test:spring-boot-smoke-test-batch-jdbc" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | 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" | 
					
						
							| 
									
										
										
										
											2025-09-30 23:39:23 +08:00
										 |  |  | include ":smoke-test:spring-boot-smoke-test-data-mongodb" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | 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-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-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-webflux" | 
					
						
							|  |  |  | include ":smoke-test:spring-boot-smoke-test-servlet" | 
					
						
							|  |  |  | include ":smoke-test:spring-boot-smoke-test-session-hazelcast" | 
					
						
							|  |  |  | include ":smoke-test:spring-boot-smoke-test-session-jdbc" | 
					
						
							| 
									
										
										
										
											2025-09-30 23:39:23 +08:00
										 |  |  | include ":smoke-test:spring-boot-smoke-test-session-data-mongodb" | 
					
						
							|  |  |  | include ":smoke-test:spring-boot-smoke-test-session-data-mongodb-webflux" | 
					
						
							|  |  |  | include ":smoke-test:spring-boot-smoke-test-session-data-redis" | 
					
						
							|  |  |  | include ":smoke-test:spring-boot-smoke-test-session-data-redis-webflux" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | 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-launch-script-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" | 
					
						
							| 
									
										
										
										
											2025-09-28 13:32:44 +08:00
										 |  |  | include ":integration-test:spring-boot-test-integration-tests" | 
					
						
							| 
									
										
										
										
											2025-07-09 06:58:43 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | include ":system-test:spring-boot-deployment-system-tests" | 
					
						
							|  |  |  | include ":system-test:spring-boot-image-system-tests" |