35 lines
767 B
Groovy
35 lines
767 B
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"
|
|
|
|
["batch", "boot", "cloud", "data", "framework", "integration", "security", "session"].each { group ->
|
|
file(group).eachDirMatch(~/[a-z].*/) { smokeTest ->
|
|
include "$group:${smokeTest.name}"
|
|
}
|
|
}
|