Files
spring-lifecycle-smoke-tests/settings.gradle
Sébastien Deleuze 82d82b0980 Initial commit
The bootstrap of this project is done by leveraging
and adapting the infrastructure created in
https://github.com/spring-projects/spring-aot-smoke-tests.
2023-06-27 12:48:52 +02:00

34 lines
665 B
Groovy

pluginManagement {
includeBuild "gradle/plugins/cr-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.12.6"
id "io.spring.ge.conventions" version "0.0.13"
}
rootProject.name="spring-checkpoint-restore-smoke-tests"
include "cr-smoke-test-support"
["framework"].each { group ->
file(group).eachDirMatch(~/[a-z].*/) { smokeTest ->
include "$group:${smokeTest.name}"
}
}