Fix version placeholder replacement in Gradle plugin docs
Closes gh-21640pull/21673/head
parent
7104d8d81e
commit
f0bc8ee73c
@ -1,3 +1,3 @@
|
||||
plugins {
|
||||
id 'org.springframework.boot' version '{version}'
|
||||
id 'org.springframework.boot' version '{gradle-project-version}'
|
||||
}
|
||||
|
@ -1,3 +1,3 @@
|
||||
plugins {
|
||||
id("org.springframework.boot") version "{version}"
|
||||
id("org.springframework.boot") version "{gradle-project-version}"
|
||||
}
|
||||
|
@ -1,3 +1,3 @@
|
||||
plugins {
|
||||
id 'org.springframework.boot' version '{version}' apply false
|
||||
id 'org.springframework.boot' version '{gradle-project-version}' apply false
|
||||
}
|
||||
|
@ -1,3 +1,3 @@
|
||||
plugins {
|
||||
id("org.springframework.boot") version "{version}" apply false
|
||||
id("org.springframework.boot") version "{gradle-project-version}" apply false
|
||||
}
|
||||
|
Loading…
Reference in New Issue