Commit faaa5e41 authored by Phillip Webb's avatar Phillip Webb

Fix BOM attached sourceSet

See gh-23936
parent 40c1748e
...@@ -45,7 +45,7 @@ dependencies { ...@@ -45,7 +45,7 @@ dependencies {
} }
task syncSpringBootDependenciesBom(type: Sync) { task syncSpringBootDependenciesBom(type: Sync) {
destinationDir = file("${buildDir}/generated/sources/dependencies-bom/org/springframework/boot/maven") destinationDir = file("${buildDir}/generated-resources/org/springframework/boot/maven")
from configurations.dependenciesBom from configurations.dependenciesBom
} }
...@@ -56,8 +56,8 @@ syncDocumentationSourceForAsciidoctor { ...@@ -56,8 +56,8 @@ syncDocumentationSourceForAsciidoctor {
} }
sourceSets { sourceSets {
main { intTest {
output.dir("${buildDir}/generated/sources/dependencies-bom", builtBy: "syncSpringBootDependenciesBom") output.dir("${buildDir}/generated-resources", builtBy: "syncSpringBootDependenciesBom")
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment