Files
spring-aot-smoke-tests/settings.gradle
Stephane Nicoll 5bc608d5b5 Add smoke test for bean ordering
Closes gh-96
2022-08-22 14:20:59 +02:00

109 lines
2.5 KiB
Groovy

pluginManagement {
includeBuild "gradle-plugins/aot-smoke-test-plugin"
repositories {
gradlePluginPortal()
maven {
url "https://repo.spring.io/snapshot"
}
maven {
url 'https://repo.spring.io/milestone'
}
maven {
url "https://repo.spring.io/release"
content {
includeGroup "io.spring.ge.conventions"
}
}
}
}
plugins {
id "com.gradle.enterprise" version "3.10.1"
id "io.spring.ge.conventions" version "0.0.11"
}
rootProject.name="spring-aot-smoke-tests"
include "aot-smoke-test-support"
include "aot-smoke-test-third-party-hints"
include "actuator-webflux"
include "actuator-webflux-mgmt-port"
include "actuator-webmvc"
include "actuator-webmvc-mgmt-port"
include "aspect"
include "async"
include "batch"
include "cache-cache2k"
include "cache-caffeine"
include "cache-hazelcast"
include "cache-redis"
include "cache-simple"
include "cache-simple-jdk-proxy"
include "cloud-function-web"
include "cloud-function-webflux"
include "cloud-stream-kafka"
include "cloud-stream-rabbit"
include "cloud-task"
include "command-line-runner"
include "conditional"
include "configuration-properties"
include "data-cassandra"
include "data-cassandra-reactive"
include "data-jdbc-h2"
include "data-jdbc-postgresql"
include "data-jpa"
include "data-mongodb"
include "data-mongodb-reactive"
include "data-r2dbc"
include "data-redis"
include "data-redis-reactive"
include "data-rest-mongodb"
include "event-listener"
include "flyway"
include "freemarker-webflux"
include "freemarker-webmvc"
include "hateoas"
include "jdbc-h2"
include "jdbc-mariadb"
include "jdbc-mysql"
include "jdbc-postgresql"
include "ldap-odm"
include "liquibase"
include "logging-log4j2"
include "logging-logback"
include "mail"
include "mustache-webflux"
include "mustache-webmvc"
include "order"
include "quartz"
include "rest-template"
include "rsocket"
include "scheduled"
include "security-ldap"
include "security-method"
include "security-thymeleaf"
include "security-webflux"
include "security-webmvc"
include "servlet-tomcat"
include "session-jdbc"
include "session-redis-webflux"
include "spring-amqp-rabbit"
include "spring-kafka"
include "spring-kafka-avro"
include "spring-kafka-streams"
include "thymeleaf-webmvc"
include "thymeleaf-webflux"
include "tracing-brave-zipkin"
include "transactional"
include "transactional-event-listener"
include "validation"
include "webclient"
include "webflux-netty"
include "webflux-netty-tls"
include "webmvc-tomcat"
include "webmvc-tomcat-tls"
include "websocket"
include "websocket-stomp"