commit
4040105629
|
|
@ -61,6 +61,7 @@ dependencies {
|
|||
configurationProperties(project(path: ":spring-boot-project:spring-boot-actuator-autoconfigure", configuration: "configurationPropertiesMetadata"))
|
||||
configurationProperties(project(path: ":spring-boot-project:spring-boot-autoconfigure", configuration: "configurationPropertiesMetadata"))
|
||||
configurationProperties(project(path: ":spring-boot-project:spring-boot-devtools", configuration: "configurationPropertiesMetadata"))
|
||||
configurationProperties(project(path: ":spring-boot-project:spring-boot-test-autoconfigure", configuration: "configurationPropertiesMetadata"))
|
||||
|
||||
gradlePluginDocumentation(project(path: ":spring-boot-project:spring-boot-tools:spring-boot-gradle-plugin", configuration: "documentation"))
|
||||
|
||||
|
|
|
|||
|
|
@ -88,6 +88,16 @@ dependencies {
|
|||
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
|
||||
}
|
||||
|
||||
configurations {
|
||||
configurationPropertiesMetadata
|
||||
}
|
||||
|
||||
artifacts {
|
||||
configurationPropertiesMetadata new File(sourceSets.main.output.resourcesDir, "META-INF/spring-configuration-metadata.json"), { artifact ->
|
||||
artifact.builtBy sourceSets.main.processResourcesTaskName
|
||||
}
|
||||
}
|
||||
|
||||
test {
|
||||
include "**/*Tests.class"
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue