Fix incorrect spring replace due to `"` change

This commit is contained in:
Phillip Webb 2020-01-22 17:10:51 -08:00
parent 462f5635d6
commit 2198614359
1 changed files with 1 additions and 1 deletions

View File

@ -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}\"")
}
}