Fix incorrect spring replace due to `"` change
This commit is contained in:
parent
462f5635d6
commit
2198614359
|
@ -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…
Reference in New Issue