Browse Source

Merge branch '2.3.x'

Closes gh-22888
pull/22898/head
Andy Wilkinson 5 years ago
parent
commit
5e04e1f4a3
  1. 4
      spring-boot-project/spring-boot-devtools/build.gradle

4
spring-boot-project/spring-boot-devtools/build.gradle

@ -74,7 +74,7 @@ dependencies { @@ -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) { @@ -83,5 +83,5 @@ task copyIntTestDependencies(type: Copy) {
}
intTest {
dependsOn copyIntTestDependencies
dependsOn syncIntTestDependencies
}

Loading…
Cancel
Save