Merge branch '2.3.x'

Closes gh-22888
This commit is contained in:
Andy Wilkinson 2020-08-11 14:34:27 +01:00
commit 5e04e1f4a3
1 changed files with 2 additions and 2 deletions

View File

@ -74,7 +74,7 @@ dependencies {
testRuntimeOnly("org.yaml:snakeyaml")
}
task copyIntTestDependencies(type: Copy) {
task syncIntTestDependencies(type: Sync) {
destinationDir = file("${buildDir}/dependencies")
from {
configurations.intTestDependencies
@ -83,5 +83,5 @@ task copyIntTestDependencies(type: Copy) {
}
intTest {
dependsOn copyIntTestDependencies
dependsOn syncIntTestDependencies
}