Merge branch '3.2.x' into 3.3.x
Closes gh-42440
This commit is contained in:
commit
100bedc07d
@ -24,3 +24,7 @@ allprojects {
|
|||||||
resolutionStrategy.cacheChangingModulesFor 0, "minutes"
|
resolutionStrategy.cacheChangingModulesFor 0, "minutes"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
subprojects {
|
||||||
|
apply plugin: "org.springframework.boot.conventions"
|
||||||
|
}
|
||||||
|
@ -68,7 +68,8 @@ class KotlinConventions {
|
|||||||
|
|
||||||
private void configureDokkatoo(Project project) {
|
private void configureDokkatoo(Project project) {
|
||||||
DokkatooExtension dokkatoo = project.getExtensions().getByType(DokkatooExtension.class);
|
DokkatooExtension dokkatoo = project.getExtensions().getByType(DokkatooExtension.class);
|
||||||
dokkatoo.getDokkatooSourceSets().named(SourceSet.MAIN_SOURCE_SET_NAME).configure((sourceSet) -> {
|
dokkatoo.getDokkatooSourceSets().configureEach((sourceSet) -> {
|
||||||
|
if (SourceSet.MAIN_SOURCE_SET_NAME.equals(sourceSet.getName())) {
|
||||||
sourceSet.getSourceRoots().setFrom(project.file("src/main/kotlin"));
|
sourceSet.getSourceRoots().setFrom(project.file("src/main/kotlin"));
|
||||||
sourceSet.getClasspath()
|
sourceSet.getClasspath()
|
||||||
.from(project.getExtensions()
|
.from(project.getExtensions()
|
||||||
@ -77,7 +78,8 @@ class KotlinConventions {
|
|||||||
.getOutput());
|
.getOutput());
|
||||||
sourceSet.getExternalDocumentationLinks().create("spring-boot-javadoc", (link) -> {
|
sourceSet.getExternalDocumentationLinks().create("spring-boot-javadoc", (link) -> {
|
||||||
link.getUrl().set(URI.create("https://docs.spring.io/spring-boot/api/java/"));
|
link.getUrl().set(URI.create("https://docs.spring.io/spring-boot/api/java/"));
|
||||||
link.getPackageListUrl().set(URI.create("https://docs.spring.io/spring-boot/api/java/element-list"));
|
link.getPackageListUrl()
|
||||||
|
.set(URI.create("https://docs.spring.io/spring-boot/api/java/element-list"));
|
||||||
});
|
});
|
||||||
sourceSet.getExternalDocumentationLinks().create("spring-framework-javadoc", (link) -> {
|
sourceSet.getExternalDocumentationLinks().create("spring-framework-javadoc", (link) -> {
|
||||||
String url = "https://docs.spring.io/spring-framework/docs/%s/javadoc-api/"
|
String url = "https://docs.spring.io/spring-framework/docs/%s/javadoc-api/"
|
||||||
@ -85,6 +87,7 @@ class KotlinConventions {
|
|||||||
link.getUrl().set(URI.create(url));
|
link.getUrl().set(URI.create(url));
|
||||||
link.getPackageListUrl().set(URI.create(url + "/element-list"));
|
link.getPackageListUrl().set(URI.create(url + "/element-list"));
|
||||||
});
|
});
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -98,21 +98,33 @@ public class AutoConfigurationPlugin implements Plugin<Project> {
|
|||||||
.add(AutoConfigurationPlugin.AUTO_CONFIGURATION_METADATA_CONFIGURATION_NAME, task.getOutputFile(),
|
.add(AutoConfigurationPlugin.AUTO_CONFIGURATION_METADATA_CONFIGURATION_NAME, task.getOutputFile(),
|
||||||
(artifact) -> artifact.builtBy(task));
|
(artifact) -> artifact.builtBy(task));
|
||||||
});
|
});
|
||||||
project.getPlugins().withType(ArchitecturePlugin.class, (architecturePlugin) -> {
|
project.getPlugins()
|
||||||
project.getTasks().named("checkArchitectureMain", ArchitectureCheck.class).configure((task) -> {
|
.withType(ArchitecturePlugin.class, (plugin) -> configureArchitecturePluginTasks(project));
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
private void configureArchitecturePluginTasks(Project project) {
|
||||||
|
project.getTasks().configureEach((task) -> {
|
||||||
|
if ("checkArchitectureMain".equals(task.getName()) && task instanceof ArchitectureCheck architectureCheck) {
|
||||||
|
configureCheckArchitectureMain(project, architectureCheck);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
private void configureCheckArchitectureMain(Project project, ArchitectureCheck architectureCheck) {
|
||||||
SourceSet main = project.getExtensions()
|
SourceSet main = project.getExtensions()
|
||||||
.getByType(JavaPluginExtension.class)
|
.getByType(JavaPluginExtension.class)
|
||||||
.getSourceSets()
|
.getSourceSets()
|
||||||
.getByName(SourceSet.MAIN_SOURCE_SET_NAME);
|
.getByName(SourceSet.MAIN_SOURCE_SET_NAME);
|
||||||
File resourcesDirectory = main.getOutput().getResourcesDir();
|
File resourcesDirectory = main.getOutput().getResourcesDir();
|
||||||
task.dependsOn(main.getProcessResourcesTaskName());
|
architectureCheck.dependsOn(main.getProcessResourcesTaskName());
|
||||||
task.getInputs().files(resourcesDirectory).optional().withPathSensitivity(PathSensitivity.RELATIVE);
|
architectureCheck.getInputs()
|
||||||
task.getRules()
|
.files(resourcesDirectory)
|
||||||
|
.optional()
|
||||||
|
.withPathSensitivity(PathSensitivity.RELATIVE);
|
||||||
|
architectureCheck.getRules()
|
||||||
.add(allClassesAnnotatedWithAutoConfigurationShouldBeListedInAutoConfigurationImports(
|
.add(allClassesAnnotatedWithAutoConfigurationShouldBeListedInAutoConfigurationImports(
|
||||||
autoConfigurationImports(project, resourcesDirectory)));
|
autoConfigurationImports(project, resourcesDirectory)));
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private ArchRule allClassesAnnotatedWithAutoConfigurationShouldBeListedInAutoConfigurationImports(
|
private ArchRule allClassesAnnotatedWithAutoConfigurationShouldBeListedInAutoConfigurationImports(
|
||||||
|
@ -3,7 +3,6 @@ plugins {
|
|||||||
id "org.antora"
|
id "org.antora"
|
||||||
id "org.springframework.boot.auto-configuration"
|
id "org.springframework.boot.auto-configuration"
|
||||||
id "org.springframework.boot.configuration-properties"
|
id "org.springframework.boot.configuration-properties"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
id "org.springframework.boot.deployed"
|
id "org.springframework.boot.deployed"
|
||||||
id "org.springframework.boot.optional-dependencies"
|
id "org.springframework.boot.optional-dependencies"
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java-library"
|
id "java-library"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
id "org.springframework.boot.configuration-properties"
|
id "org.springframework.boot.configuration-properties"
|
||||||
id "org.springframework.boot.optional-dependencies"
|
id "org.springframework.boot.optional-dependencies"
|
||||||
id "org.springframework.boot.docker-test"
|
id "org.springframework.boot.docker-test"
|
||||||
|
@ -2,7 +2,6 @@ plugins {
|
|||||||
id "java-library"
|
id "java-library"
|
||||||
id "org.springframework.boot.auto-configuration"
|
id "org.springframework.boot.auto-configuration"
|
||||||
id "org.springframework.boot.configuration-properties"
|
id "org.springframework.boot.configuration-properties"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
id "org.springframework.boot.deployed"
|
id "org.springframework.boot.deployed"
|
||||||
id "org.springframework.boot.docker-test"
|
id "org.springframework.boot.docker-test"
|
||||||
id "org.springframework.boot.optional-dependencies"
|
id "org.springframework.boot.optional-dependencies"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "org.springframework.boot.bom"
|
id "org.springframework.boot.bom"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
id "org.springframework.boot.deployed"
|
id "org.springframework.boot.deployed"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2,7 +2,6 @@ plugins {
|
|||||||
id "java-library"
|
id "java-library"
|
||||||
id "org.springframework.boot.auto-configuration"
|
id "org.springframework.boot.auto-configuration"
|
||||||
id "org.springframework.boot.configuration-properties"
|
id "org.springframework.boot.configuration-properties"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
id "org.springframework.boot.deployed"
|
id "org.springframework.boot.deployed"
|
||||||
id "org.springframework.boot.integration-test"
|
id "org.springframework.boot.integration-test"
|
||||||
id "org.springframework.boot.optional-dependencies"
|
id "org.springframework.boot.optional-dependencies"
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java-library"
|
id "java-library"
|
||||||
id "org.springframework.boot.configuration-properties"
|
id "org.springframework.boot.configuration-properties"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
id "org.springframework.boot.deployed"
|
id "org.springframework.boot.deployed"
|
||||||
id "org.springframework.boot.docker-test"
|
id "org.springframework.boot.docker-test"
|
||||||
id "org.springframework.boot.optional-dependencies"
|
id "org.springframework.boot.optional-dependencies"
|
||||||
|
@ -2,7 +2,6 @@ plugins {
|
|||||||
id "dev.adamko.dokkatoo-html"
|
id "dev.adamko.dokkatoo-html"
|
||||||
id "java"
|
id "java"
|
||||||
id "org.antora"
|
id "org.antora"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
id "org.springframework.boot.deployed"
|
id "org.springframework.boot.deployed"
|
||||||
id 'org.jetbrains.kotlin.jvm'
|
id 'org.jetbrains.kotlin.jvm'
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "org.springframework.boot.bom"
|
id "org.springframework.boot.bom"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
id "org.springframework.boot.deployed"
|
id "org.springframework.boot.deployed"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
id "org.springframework.boot.deployed"
|
id "org.springframework.boot.deployed"
|
||||||
id "org.springframework.boot.maven-repository"
|
id "org.springframework.boot.maven-repository"
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java-library"
|
id "java-library"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
id "org.springframework.boot.deployed"
|
id "org.springframework.boot.deployed"
|
||||||
id "org.springframework.boot.docker-test"
|
id "org.springframework.boot.docker-test"
|
||||||
id "org.springframework.boot.optional-dependencies"
|
id "org.springframework.boot.optional-dependencies"
|
||||||
|
@ -2,7 +2,6 @@ plugins {
|
|||||||
id "dev.adamko.dokkatoo-html"
|
id "dev.adamko.dokkatoo-html"
|
||||||
id "java-library"
|
id "java-library"
|
||||||
id "org.jetbrains.kotlin.jvm"
|
id "org.jetbrains.kotlin.jvm"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
id "org.springframework.boot.deployed"
|
id "org.springframework.boot.deployed"
|
||||||
id "org.springframework.boot.optional-dependencies"
|
id "org.springframework.boot.optional-dependencies"
|
||||||
}
|
}
|
||||||
|
@ -2,7 +2,6 @@ plugins {
|
|||||||
id "java-library"
|
id "java-library"
|
||||||
id "org.springframework.boot.auto-configuration"
|
id "org.springframework.boot.auto-configuration"
|
||||||
id "org.springframework.boot.configuration-properties"
|
id "org.springframework.boot.configuration-properties"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
id "org.springframework.boot.deployed"
|
id "org.springframework.boot.deployed"
|
||||||
id "org.springframework.boot.docker-test"
|
id "org.springframework.boot.docker-test"
|
||||||
id "org.springframework.boot.optional-dependencies"
|
id "org.springframework.boot.optional-dependencies"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java-library"
|
id "java-library"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
id "org.springframework.boot.deployed"
|
id "org.springframework.boot.deployed"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java-library"
|
id "java-library"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
id "org.springframework.boot.deployed"
|
id "org.springframework.boot.deployed"
|
||||||
id "org.springframework.boot.annotation-processor"
|
id "org.springframework.boot.annotation-processor"
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java-library"
|
id "java-library"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
id "org.springframework.boot.deployed"
|
id "org.springframework.boot.deployed"
|
||||||
id "org.springframework.boot.docker-test"
|
id "org.springframework.boot.docker-test"
|
||||||
}
|
}
|
||||||
|
@ -2,7 +2,6 @@ plugins {
|
|||||||
id "java"
|
id "java"
|
||||||
id "eclipse"
|
id "eclipse"
|
||||||
id "org.springframework.boot.deployed"
|
id "org.springframework.boot.deployed"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
id "org.springframework.boot.integration-test"
|
id "org.springframework.boot.integration-test"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Spring Boot Configuration Metadata Changelog Generator"
|
description = "Spring Boot Configuration Metadata Changelog Generator"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java-library"
|
id "java-library"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
id "org.springframework.boot.deployed"
|
id "org.springframework.boot.deployed"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java-library"
|
id "java-library"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
id "org.springframework.boot.deployed"
|
id "org.springframework.boot.deployed"
|
||||||
id "org.springframework.boot.annotation-processor"
|
id "org.springframework.boot.annotation-processor"
|
||||||
}
|
}
|
||||||
|
@ -6,7 +6,6 @@ plugins {
|
|||||||
id "java-gradle-plugin"
|
id "java-gradle-plugin"
|
||||||
id "maven-publish"
|
id "maven-publish"
|
||||||
id "org.antora"
|
id "org.antora"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
id "org.springframework.boot.docker-test"
|
id "org.springframework.boot.docker-test"
|
||||||
id "org.springframework.boot.maven-repository"
|
id "org.springframework.boot.maven-repository"
|
||||||
id "org.springframework.boot.optional-dependencies"
|
id "org.springframework.boot.optional-dependencies"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java-library"
|
id "java-library"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Spring Boot Gradle Testing Support"
|
description = "Spring Boot Gradle Testing Support"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java-library"
|
id "java-library"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
id "org.springframework.boot.deployed"
|
id "org.springframework.boot.deployed"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java-library"
|
id "java-library"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
id "org.springframework.boot.deployed"
|
id "org.springframework.boot.deployed"
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -22,6 +21,8 @@ dependencies {
|
|||||||
testRuntimeOnly("org.springframework:spring-webmvc")
|
testRuntimeOnly("org.springframework:spring-webmvc")
|
||||||
}
|
}
|
||||||
|
|
||||||
tasks.named("checkArchitectureMain").configure {
|
tasks.configureEach {
|
||||||
|
if ("checkArchitectureMain".equals(it.name)) {
|
||||||
prohibitObjectsRequireNonNull = false
|
prohibitObjectsRequireNonNull = false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java-library"
|
id "java-library"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
id "org.springframework.boot.deployed"
|
id "org.springframework.boot.deployed"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java-library"
|
id "java-library"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
id "org.springframework.boot.deployed"
|
id "org.springframework.boot.deployed"
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -22,6 +21,8 @@ dependencies {
|
|||||||
testRuntimeOnly("org.springframework:spring-webmvc")
|
testRuntimeOnly("org.springframework:spring-webmvc")
|
||||||
}
|
}
|
||||||
|
|
||||||
tasks.named("checkArchitectureMain").configure {
|
tasks.configureEach {
|
||||||
|
if ("checkArchitectureMain".equals(it.name)) {
|
||||||
prohibitObjectsRequireNonNull = false
|
prohibitObjectsRequireNonNull = false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "org.antora"
|
id "org.antora"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
id "org.springframework.boot.maven-plugin"
|
id "org.springframework.boot.maven-plugin"
|
||||||
id "org.springframework.boot.optional-dependencies"
|
id "org.springframework.boot.optional-dependencies"
|
||||||
id "org.springframework.boot.docker-test"
|
id "org.springframework.boot.docker-test"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
id "org.springframework.boot.deployed"
|
id "org.springframework.boot.deployed"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java-library"
|
id "java-library"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
id "org.springframework.boot.optional-dependencies"
|
id "org.springframework.boot.optional-dependencies"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java-library"
|
id "java-library"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
id "org.springframework.boot.optional-dependencies"
|
id "org.springframework.boot.optional-dependencies"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2,7 +2,6 @@ plugins {
|
|||||||
id "dev.adamko.dokkatoo-html"
|
id "dev.adamko.dokkatoo-html"
|
||||||
id "java-library"
|
id "java-library"
|
||||||
id "org.jetbrains.kotlin.jvm"
|
id "org.jetbrains.kotlin.jvm"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
id "org.springframework.boot.configuration-properties"
|
id "org.springframework.boot.configuration-properties"
|
||||||
id "org.springframework.boot.deployed"
|
id "org.springframework.boot.deployed"
|
||||||
id "org.springframework.boot.optional-dependencies"
|
id "org.springframework.boot.optional-dependencies"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "war"
|
id "war"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
id "org.springframework.boot.system-test"
|
id "org.springframework.boot.system-test"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'java-gradle-plugin'
|
id 'java-gradle-plugin'
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
id "org.springframework.boot.system-test"
|
id "org.springframework.boot.system-test"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Spring Boot Configuration Processor Tests"
|
description = "Spring Boot Configuration Processor Tests"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
id "org.springframework.boot.docker-test"
|
id "org.springframework.boot.docker-test"
|
||||||
id "de.undercouch.download"
|
id "de.undercouch.download"
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
id "org.springframework.boot.docker-test"
|
id "org.springframework.boot.docker-test"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
id "org.springframework.boot.docker-test"
|
id "org.springframework.boot.docker-test"
|
||||||
id "de.undercouch.download"
|
id "de.undercouch.download"
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
id "org.springframework.boot.integration-test"
|
id "org.springframework.boot.integration-test"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
id "org.springframework.boot.integration-test"
|
id "org.springframework.boot.integration-test"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
id "org.springframework.boot.docker-test"
|
id "org.springframework.boot.docker-test"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Spring Boot Actuator custom security smoke test"
|
description = "Spring Boot Actuator custom security smoke test"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Spring Boot Actuator Log4j 2 smoke test"
|
description = "Spring Boot Actuator Log4j 2 smoke test"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Spring Boot Actuator non-web smoke test"
|
description = "Spring Boot Actuator non-web smoke test"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Spring Boot Actuator UI smoke test"
|
description = "Spring Boot Actuator UI smoke test"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Spring Boot Actuator smoke test"
|
description = "Spring Boot Actuator smoke test"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
id "org.springframework.boot.docker-test"
|
id "org.springframework.boot.docker-test"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
id "java-base"
|
id "java-base"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Spring Boot AOP smoke test"
|
description = "Spring Boot AOP smoke test"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Spring Boot Batch smoke test"
|
description = "Spring Boot Batch smoke test"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Spring Boot Bootstrap Registry smoke test"
|
description = "Spring Boot Bootstrap Registry smoke test"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
id "org.springframework.boot.docker-test"
|
id "org.springframework.boot.docker-test"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
id "org.springframework.boot.docker-test"
|
id "org.springframework.boot.docker-test"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
id "org.springframework.boot.docker-test"
|
id "org.springframework.boot.docker-test"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Spring Boot Data JDBC smoke test"
|
description = "Spring Boot Data JDBC smoke test"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Spring Boot Data JPA smoke test"
|
description = "Spring Boot Data JPA smoke test"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Spring Boot Data LDAP smoke test"
|
description = "Spring Boot Data LDAP smoke test"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
id "org.springframework.boot.docker-test"
|
id "org.springframework.boot.docker-test"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
id "org.springframework.boot.docker-test"
|
id "org.springframework.boot.docker-test"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
id "org.springframework.boot.docker-test"
|
id "org.springframework.boot.docker-test"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Spring Boot Data R2DBC smoke test"
|
description = "Spring Boot Data R2DBC smoke test"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
id "org.springframework.boot.docker-test"
|
id "org.springframework.boot.docker-test"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Spring Boot Data REST smoke test"
|
description = "Spring Boot Data REST smoke test"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Spring Boot DevTools smoke test"
|
description = "Spring Boot DevTools smoke test"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Spring Boot Flyway smoke test"
|
description = "Spring Boot Flyway smoke test"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Spring Boot GraphQL smoke test"
|
description = "Spring Boot GraphQL smoke test"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Spring Boot HATEOAS smoke test"
|
description = "Spring Boot HATEOAS smoke test"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Spring Boot Integration smoke test"
|
description = "Spring Boot Integration smoke test"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Spring Boot Jersey smoke test"
|
description = "Spring Boot Jersey smoke test"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "war"
|
id "war"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Spring Boot Jetty JSP smoke test"
|
description = "Spring Boot Jetty JSP smoke test"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Spring Boot Jetty SSL smoke test"
|
description = "Spring Boot Jetty SSL smoke test"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Spring Boot Jetty smoke test"
|
description = "Spring Boot Jetty smoke test"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Spring Boot JPA smoke test"
|
description = "Spring Boot JPA smoke test"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Spring Boot JUnit Vintage smoke test"
|
description = "Spring Boot JUnit Vintage smoke test"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
id "org.springframework.boot.docker-test"
|
id "org.springframework.boot.docker-test"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Spring Boot Liquibase smoke test"
|
description = "Spring Boot Liquibase smoke test"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Spring Boot Logback smoke test"
|
description = "Spring Boot Logback smoke test"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Spring Boot OAuth2 Authorization Server smoke test"
|
description = "Spring Boot OAuth2 Authorization Server smoke test"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Spring Boot OAuth2 Client smoke test"
|
description = "Spring Boot OAuth2 Client smoke test"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Spring Boot OAuth2 Resource Server smoke test"
|
description = "Spring Boot OAuth2 Resource Server smoke test"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Spring Boot parent context smoke test"
|
description = "Spring Boot parent context smoke test"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Spring Boot profile smoke test"
|
description = "Spring Boot profile smoke test"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Spring Boot Prometheus smoke test"
|
description = "Spring Boot Prometheus smoke test"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Spring Boot property validation smoke test"
|
description = "Spring Boot property validation smoke test"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
id "org.springframework.boot.docker-test"
|
id "org.springframework.boot.docker-test"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Spring Boot Quartz smoke test"
|
description = "Spring Boot Quartz smoke test"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Spring Boot reactive OAuth 2 client smoke test"
|
description = "Spring Boot reactive OAuth 2 client smoke test"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Spring Boot reactive OAuth 2 resource server smoke test"
|
description = "Spring Boot reactive OAuth 2 resource server smoke test"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Spring Boot RSocket smoke test"
|
description = "Spring Boot RSocket smoke test"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Spring Boot SAML 2 service provider smoke test"
|
description = "Spring Boot SAML 2 service provider smoke test"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Spring Boot secure Jersey smoke test"
|
description = "Spring Boot secure Jersey smoke test"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Spring Boot secure WebFlux smoke test"
|
description = "Spring Boot secure WebFlux smoke test"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Spring Boot Security smoke test"
|
description = "Spring Boot Security smoke test"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "war"
|
id "war"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Spring Boot Servlet smoke test"
|
description = "Spring Boot Servlet smoke test"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Spring Boot Session smoke test"
|
description = "Spring Boot Session smoke test"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "Spring Boot Session JDBC smoke test"
|
description = "Spring Boot Session JDBC smoke test"
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
id "org.springframework.boot.docker-test"
|
id "org.springframework.boot.docker-test"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
id "org.springframework.boot.docker-test"
|
id "org.springframework.boot.docker-test"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id "java"
|
id "java"
|
||||||
id "org.springframework.boot.conventions"
|
|
||||||
id "org.springframework.boot.docker-test"
|
id "org.springframework.boot.docker-test"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user