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"
|
|
|
|
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"
|
|
|
|
include "module:spring-boot-cache"
|
|
|
|
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-commons"
|
|
|
|
include "module:spring-boot-data-couchbase"
|
|
|
|
include "module:spring-boot-data-elasticsearch"
|
|
|
|
include "module:spring-boot-data-jdbc"
|
|
|
|
include "module:spring-boot-data-jpa"
|
|
|
|
include "module:spring-boot-data-ldap"
|
|
|
|
include "module:spring-boot-data-mongodb"
|
|
|
|
include "module:spring-boot-data-neo4j"
|
|
|
|
include "module:spring-boot-data-r2dbc"
|
|
|
|
include "module:spring-boot-data-redis"
|
|
|
|
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"
|
|
|
|
include "module:spring-boot-jetty"
|
|
|
|
include "module:spring-boot-jms"
|
|
|
|
include "module:spring-boot-jooq"
|
|
|
|
include "module:spring-boot-jpa"
|
|
|
|
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"
|
|
|
|
include "module:spring-boot-micrometer-observation"
|
|
|
|
include "module:spring-boot-micrometer-tracing"
|
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"
|
|
|
|
include "module:spring-boot-rsocket"
|
|
|
|
include "module:spring-boot-security"
|
|
|
|
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"
|
|
|
|
include "module:spring-boot-test-autoconfigure"
|
|
|
|
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-web-server-test" // FIXME move to core?
|
|
|
|
include "module:spring-boot-webclient"
|
|
|
|
include "module:spring-boot-webflux"
|
|
|
|
include "module:spring-boot-webmvc"
|
|
|
|
include "module:spring-boot-webservices"
|
|
|
|
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-actuator"
|
|
|
|
include "starter:spring-boot-starter-amqp"
|
|
|
|
include "starter:spring-boot-starter-artemis"
|
2025-09-15 17:19:05 +08:00
|
|
|
include "starter:spring-boot-starter-aspectj"
|
2025-07-09 06:58:43 +08:00
|
|
|
include "starter:spring-boot-starter-batch"
|
|
|
|
include "starter:spring-boot-starter-cache"
|
2025-07-22 18:24:46 +08:00
|
|
|
include "starter:spring-boot-starter-cassandra"
|
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-07-22 18:24:46 +08:00
|
|
|
include "starter:spring-boot-starter-couchbase"
|
2025-07-09 06:58:43 +08:00
|
|
|
include "starter:spring-boot-starter-data-cassandra"
|
|
|
|
include "starter:spring-boot-starter-data-cassandra-reactive"
|
|
|
|
include "starter:spring-boot-starter-data-couchbase"
|
|
|
|
include "starter:spring-boot-starter-data-couchbase-reactive"
|
|
|
|
include "starter:spring-boot-starter-data-elasticsearch"
|
|
|
|
include "starter:spring-boot-starter-data-jdbc"
|
|
|
|
include "starter:spring-boot-starter-data-jpa"
|
|
|
|
include "starter:spring-boot-starter-data-ldap"
|
|
|
|
include "starter:spring-boot-starter-data-mongodb"
|
|
|
|
include "starter:spring-boot-starter-data-mongodb-reactive"
|
|
|
|
include "starter:spring-boot-starter-data-neo4j"
|
|
|
|
include "starter:spring-boot-starter-data-r2dbc"
|
|
|
|
include "starter:spring-boot-starter-data-redis"
|
|
|
|
include "starter:spring-boot-starter-data-redis-reactive"
|
|
|
|
include "starter:spring-boot-starter-data-rest"
|
2025-07-22 18:24:46 +08:00
|
|
|
include "starter:spring-boot-starter-elasticsearch"
|
|
|
|
include "starter:spring-boot-starter-flyway"
|
2025-07-09 06:58:43 +08:00
|
|
|
include "starter:spring-boot-starter-freemarker"
|
|
|
|
include "starter:spring-boot-starter-graphql"
|
|
|
|
include "starter:spring-boot-starter-groovy-templates"
|
2025-07-22 18:24:46 +08:00
|
|
|
include "starter:spring-boot-starter-gson"
|
2025-07-09 06:58:43 +08:00
|
|
|
include "starter:spring-boot-starter-hateoas"
|
2025-07-22 18:24:46 +08:00
|
|
|
include "starter:spring-boot-starter-hazelcast"
|
2025-07-09 06:58:43 +08:00
|
|
|
include "starter:spring-boot-starter-integration"
|
2025-07-22 18:24:46 +08:00
|
|
|
include "starter:spring-boot-starter-jackson"
|
2025-07-09 06:58:43 +08:00
|
|
|
include "starter:spring-boot-starter-jdbc"
|
|
|
|
include "starter:spring-boot-starter-jetty"
|
2025-07-22 18:24:46 +08:00
|
|
|
include "starter:spring-boot-starter-jms"
|
2025-07-09 06:58:43 +08:00
|
|
|
include "starter:spring-boot-starter-jooq"
|
|
|
|
include "starter:spring-boot-starter-json"
|
2025-07-24 21:30:43 +08:00
|
|
|
include "starter:spring-boot-starter-jsonb"
|
2025-07-22 18:24:46 +08:00
|
|
|
include "starter:spring-boot-starter-kafka"
|
2025-07-25 05:32:54 +08:00
|
|
|
include "starter:spring-boot-starter-kotlin-serialization"
|
2025-07-22 18:24:46 +08:00
|
|
|
include "starter:spring-boot-starter-ldap"
|
|
|
|
include "starter:spring-boot-starter-liquibase"
|
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-07-22 18:24:46 +08:00
|
|
|
include "starter:spring-boot-starter-mongodb"
|
2025-07-09 06:58:43 +08:00
|
|
|
include "starter:spring-boot-starter-mustache"
|
2025-07-22 18:24:46 +08:00
|
|
|
include "starter:spring-boot-starter-neo4j"
|
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-07-09 06:58:43 +08:00
|
|
|
include "starter:spring-boot-starter-parent"
|
|
|
|
include "starter:spring-boot-starter-pulsar"
|
|
|
|
include "starter:spring-boot-starter-pulsar-reactive"
|
|
|
|
include "starter:spring-boot-starter-quartz"
|
2025-07-22 18:24:46 +08:00
|
|
|
include "starter:spring-boot-starter-r2dbc"
|
2025-07-24 21:30:43 +08:00
|
|
|
include "starter:spring-boot-starter-reactor"
|
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-07-09 06:58:43 +08:00
|
|
|
include "starter:spring-boot-starter-rsocket"
|
|
|
|
include "starter:spring-boot-starter-security"
|
2025-07-24 14:45:09 +08:00
|
|
|
include "starter:spring-boot-starter-security-oauth2-authorization-server"
|
|
|
|
include "starter:spring-boot-starter-security-oauth2-client"
|
|
|
|
include "starter:spring-boot-starter-security-oauth2-resource-server"
|
2025-07-22 18:24:46 +08:00
|
|
|
include "starter:spring-boot-starter-security-saml2"
|
|
|
|
include "starter:spring-boot-starter-sendgrid"
|
|
|
|
include "starter:spring-boot-starter-session-data-mongodb"
|
|
|
|
include "starter:spring-boot-starter-session-data-redis"
|
|
|
|
include "starter:spring-boot-starter-session-hazelcast"
|
|
|
|
include "starter:spring-boot-starter-session-jdbc"
|
2025-07-24 21:30:43 +08:00
|
|
|
include "starter:spring-boot-starter-sql"
|
2025-07-09 06:58:43 +08:00
|
|
|
include "starter:spring-boot-starter-test"
|
|
|
|
include "starter:spring-boot-starter-thymeleaf"
|
|
|
|
include "starter:spring-boot-starter-tomcat"
|
|
|
|
include "starter:spring-boot-starter-validation"
|
|
|
|
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-07-09 06:58:43 +08:00
|
|
|
include "starter:spring-boot-starter-webflux"
|
2025-07-22 18:24:46 +08:00
|
|
|
include "starter:spring-boot-starter-webmvc"
|
|
|
|
include "starter:spring-boot-starter-webservices"
|
2025-07-09 06:58:43 +08:00
|
|
|
include "starter:spring-boot-starter-websocket"
|
2025-07-22 18:24:46 +08:00
|
|
|
include "starter:spring-boot-starter-zipkin"
|
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"
|
|
|
|
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-mongo"
|
|
|
|
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"
|
|
|
|
include ":smoke-test:spring-boot-smoke-test-session-mongo"
|
|
|
|
include ":smoke-test:spring-boot-smoke-test-session-redis"
|
|
|
|
include ":smoke-test:spring-boot-smoke-test-session-webflux-mongo"
|
|
|
|
include ":smoke-test:spring-boot-smoke-test-session-webflux-redis"
|
|
|
|
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"
|
|
|
|
|
|
|
|
include ":system-test:spring-boot-deployment-system-tests"
|
|
|
|
include ":system-test:spring-boot-image-system-tests"
|