Browse Source

Fix incorrect spring replace due to `"` change

pull/19863/head
Phillip Webb 6 years ago
parent
commit
2198614359
  1. 2
      spring-boot-tests/spring-boot-integration-tests/spring-boot-launch-script-tests/build.gradle

2
spring-boot-tests/spring-boot-integration-tests/spring-boot-launch-script-tests/build.gradle

@ -29,7 +29,7 @@ task syncAppSource(type: Sync) { @@ -29,7 +29,7 @@ task syncAppSource(type: Sync) {
from "app"
into "${buildDir}/app"
filter { line ->
line.replace("id 'org.springframework.boot'", "id 'org.springframework.boot' version '${project.version}'")
line.replace("id \"org.springframework.boot\"", "id \"org.springframework.boot\" version \"${project.version}\"")
}
}

Loading…
Cancel
Save