166 lines
7.9 KiB
Groovy
166 lines
7.9 KiB
Groovy
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}"
|
|
}
|
|
}
|
|
}
|
|
includeBuild("gradle/plugins")
|
|
}
|
|
|
|
plugins {
|
|
id "io.spring.develocity.conventions" version "0.0.22"
|
|
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)
|
|
tag("JDK-$toolchainVersion")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
include "spring-boot-project:spring-boot"
|
|
include "spring-boot-project:spring-boot-activemq"
|
|
include "spring-boot-project:spring-boot-actuator"
|
|
include "spring-boot-project:spring-boot-actuator-autoconfigure"
|
|
include "spring-boot-project:spring-boot-all"
|
|
include "spring-boot-project:spring-boot-all-integration-tests"
|
|
include "spring-boot-project:spring-boot-amqp"
|
|
include "spring-boot-project:spring-boot-artemis"
|
|
include "spring-boot-project:spring-boot-autoconfigure"
|
|
include "spring-boot-project:spring-boot-autoconfigure-all"
|
|
include "spring-boot-project:spring-boot-batch"
|
|
include "spring-boot-project:spring-boot-cache"
|
|
include "spring-boot-project:spring-boot-cassandra"
|
|
include "spring-boot-project:spring-boot-couchbase"
|
|
include "spring-boot-project:spring-boot-data-cassandra"
|
|
include "spring-boot-project:spring-boot-data-couchbase"
|
|
include "spring-boot-project:spring-boot-data-elasticsearch"
|
|
include "spring-boot-project:spring-boot-data-jdbc"
|
|
include "spring-boot-project:spring-boot-data-jpa"
|
|
include "spring-boot-project:spring-boot-data-ldap"
|
|
include "spring-boot-project:spring-boot-data-mongodb"
|
|
include "spring-boot-project:spring-boot-data-neo4j"
|
|
include "spring-boot-project:spring-boot-data-r2dbc"
|
|
include "spring-boot-project:spring-boot-data-redis"
|
|
include "spring-boot-project:spring-boot-data-rest"
|
|
include "spring-boot-project:spring-boot-data-web"
|
|
include "spring-boot-project:spring-boot-dependencies"
|
|
include "spring-boot-project:spring-boot-devtools"
|
|
include "spring-boot-project:spring-boot-docker-compose"
|
|
include "spring-boot-project:spring-boot-docs"
|
|
include "spring-boot-project:spring-boot-elasticsearch"
|
|
include "spring-boot-project:spring-boot-flyway"
|
|
include "spring-boot-project:spring-boot-freemarker"
|
|
include "spring-boot-project:spring-boot-graphql"
|
|
include "spring-boot-project:spring-boot-groovy-templates"
|
|
include "spring-boot-project:spring-boot-gson"
|
|
include "spring-boot-project:spring-boot-h2console"
|
|
include "spring-boot-project:spring-boot-hateoas"
|
|
include "spring-boot-project:spring-boot-hazelcast"
|
|
include "spring-boot-project:spring-boot-http"
|
|
include "spring-boot-project:spring-boot-http-codec"
|
|
include "spring-boot-project:spring-boot-integration"
|
|
include "spring-boot-project:spring-boot-jackson"
|
|
include "spring-boot-project:spring-boot-jdbc"
|
|
include "spring-boot-project:spring-boot-jersey"
|
|
include "spring-boot-project:spring-boot-jetty"
|
|
include "spring-boot-project:spring-boot-jms"
|
|
include "spring-boot-project:spring-boot-jooq"
|
|
include "spring-boot-project:spring-boot-jpa"
|
|
include "spring-boot-project:spring-boot-jsonb"
|
|
include "spring-boot-project:spring-boot-kafka"
|
|
include "spring-boot-project:spring-boot-ldap"
|
|
include "spring-boot-project:spring-boot-liquibase"
|
|
include "spring-boot-project:spring-boot-neo4j"
|
|
include "spring-boot-project:spring-boot-mail"
|
|
include "spring-boot-project:spring-boot-mongodb"
|
|
include "spring-boot-project:spring-boot-mustache"
|
|
include "spring-boot-project:spring-boot-netty"
|
|
include "spring-boot-project:spring-boot-parent"
|
|
include "spring-boot-project:spring-boot-pulsar"
|
|
include "spring-boot-project:spring-boot-quartz"
|
|
include "spring-boot-project:spring-boot-r2dbc"
|
|
include "spring-boot-project:spring-boot-reactor"
|
|
include "spring-boot-project:spring-boot-reactor-netty"
|
|
include "spring-boot-project:spring-boot-rsocket"
|
|
include "spring-boot-project:spring-boot-security"
|
|
include "spring-boot-project:spring-boot-security-oauth2-authorization-server"
|
|
include "spring-boot-project:spring-boot-security-oauth2-client"
|
|
include "spring-boot-project:spring-boot-security-oauth2-resource-server"
|
|
include "spring-boot-project:spring-boot-security-saml2"
|
|
include "spring-boot-project:spring-boot-sendgrid"
|
|
include "spring-boot-project:spring-boot-session"
|
|
include "spring-boot-project:spring-boot-session-data-mongodb"
|
|
include "spring-boot-project:spring-boot-session-data-redis"
|
|
include "spring-boot-project:spring-boot-session-hazelcast"
|
|
include "spring-boot-project:spring-boot-session-jdbc"
|
|
include "spring-boot-project:spring-boot-sql"
|
|
include "spring-boot-project:spring-boot-test"
|
|
include "spring-boot-project:spring-boot-test-autoconfigure"
|
|
include "spring-boot-project:spring-boot-test-integration-tests"
|
|
include "spring-boot-project:spring-boot-testcontainers"
|
|
include "spring-boot-project:spring-boot-thymeleaf"
|
|
include "spring-boot-project:spring-boot-tomcat"
|
|
include "spring-boot-project:spring-boot-tools:spring-boot-antlib"
|
|
include "spring-boot-project:spring-boot-tools:spring-boot-autoconfigure-processor"
|
|
include "spring-boot-project:spring-boot-tools:spring-boot-buildpack-platform"
|
|
include "spring-boot-project:spring-boot-tools:spring-boot-cli"
|
|
include "spring-boot-project:spring-boot-tools:spring-boot-configuration-metadata"
|
|
include "spring-boot-project:spring-boot-tools:spring-boot-configuration-metadata-changelog-generator"
|
|
include "spring-boot-project:spring-boot-tools:spring-boot-configuration-processor"
|
|
include "spring-boot-project:spring-boot-tools:spring-boot-gradle-plugin"
|
|
include "spring-boot-project:spring-boot-tools:spring-boot-gradle-test-support"
|
|
include "spring-boot-project:spring-boot-tools:spring-boot-jarmode-tools"
|
|
include "spring-boot-project:spring-boot-tools:spring-boot-loader"
|
|
include "spring-boot-project:spring-boot-tools:spring-boot-loader-classic"
|
|
include "spring-boot-project:spring-boot-tools:spring-boot-loader-tools"
|
|
include "spring-boot-project:spring-boot-tools:spring-boot-maven-plugin"
|
|
include "spring-boot-project:spring-boot-tools:spring-boot-properties-migrator"
|
|
include "spring-boot-project:spring-boot-tools:spring-boot-test-support"
|
|
include "spring-boot-project:spring-boot-tools:spring-boot-test-support-docker"
|
|
include "spring-boot-project:spring-boot-tx"
|
|
include "spring-boot-project:spring-boot-undertow"
|
|
include "spring-boot-project:spring-boot-validation"
|
|
include "spring-boot-project:spring-boot-web-server"
|
|
include "spring-boot-project:spring-boot-webflux"
|
|
include "spring-boot-project:spring-boot-webmvc"
|
|
include "spring-boot-project:spring-boot-webservices"
|
|
include "spring-boot-project:spring-boot-websocket"
|
|
include "spring-boot-system-tests:spring-boot-deployment-tests"
|
|
include "spring-boot-system-tests:spring-boot-image-tests"
|
|
include "spring-boot-tests:spring-boot-integration-tests:spring-boot-configuration-processor-tests"
|
|
include "spring-boot-tests:spring-boot-integration-tests:spring-boot-launch-script-tests"
|
|
include "spring-boot-tests:spring-boot-integration-tests:spring-boot-loader-classic-tests"
|
|
include "spring-boot-tests:spring-boot-integration-tests:spring-boot-loader-tests"
|
|
include "spring-boot-tests:spring-boot-integration-tests:spring-boot-server-tests"
|
|
include "spring-boot-tests:spring-boot-integration-tests:spring-boot-sni-tests"
|
|
|
|
file("${rootDir}/spring-boot-project/spring-boot-starters").eachDirMatch(~/spring-boot-starter.*/) {
|
|
include "spring-boot-project:spring-boot-starters:${it.name}"
|
|
}
|
|
|
|
file("${rootDir}/spring-boot-tests/spring-boot-smoke-tests").eachDirMatch(~/spring-boot-smoke-test.*/) {
|
|
include "spring-boot-tests:spring-boot-smoke-tests:${it.name}"
|
|
}
|