Merge branch '3.3.x'

This commit is contained in:
Phillip Webb
2024-10-01 17:20:14 -07:00
2 changed files with 6 additions and 6 deletions

View File

@@ -25,9 +25,9 @@ dependencies {
implementation("org.springframework:spring-core")
}
task copyIntegrationTestSources(type: Copy) {
task syncIntegrationTestSources(type: Sync) {
destinationDir file("${buildDir}/it")
from file("src/it")
into "${buildDir}/it"
filter(springRepoistoryTransformers.ant())
}
@@ -39,7 +39,7 @@ processResources {
}
task integrationTest {
dependsOn copyIntegrationTestSources, jar
dependsOn syncIntegrationTestSources, jar
def resultsDir = file("${buildDir}/test-results/integrationTest")
inputs.dir(file("src/it")).withPathSensitivity(PathSensitivity.RELATIVE).withPropertyName("source")
inputs.files(sourceSets.main.runtimeClasspath).withNormalizer(ClasspathNormalizer).withPropertyName("classpath")