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