Commit 1896566b authored by Andy Wilkinson's avatar Andy Wilkinson

Avoid duplicates with different versions in Devtools' int test deps

Closes gh-22887
parent 289797b5
......@@ -76,7 +76,7 @@ dependencies {
testRuntimeOnly("org.yaml:snakeyaml")
}
task copyIntTestDependencies(type: Copy) {
task syncIntTestDependencies(type: Sync) {
destinationDir = file("${buildDir}/dependencies")
from {
configurations.intTestDependencies
......@@ -85,5 +85,5 @@ task copyIntTestDependencies(type: Copy) {
}
intTest {
dependsOn copyIntTestDependencies
dependsOn syncIntTestDependencies
}
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