Use spring-boot-version for dependency versions in Gradle Jetty example

This commit is contained in:
Andy Wilkinson 2014-06-09 16:45:40 +01:00
parent db8a9ec597
commit f47b40f683

View File

@ -546,8 +546,8 @@ Example in Gradle:
}
dependencies {
compile("org.springframework.boot:spring-boot-starter-web:1.0.0.RC3")
compile("org.springframework.boot:spring-boot-starter-jetty:1.0.0.RC3")
compile("org.springframework.boot:spring-boot-starter-web:{spring-boot-version}")
compile("org.springframework.boot:spring-boot-starter-jetty:{spring-boot-version}")
// ...
}
----