Use the managed version for H2 in spring-boot-sample-actuator
Closes gh-6432
This commit is contained in:
parent
72b30386de
commit
417fae4e27
|
|
@ -20,8 +20,6 @@ apply plugin: 'eclipse'
|
||||||
apply plugin: 'idea'
|
apply plugin: 'idea'
|
||||||
apply plugin: 'spring-boot'
|
apply plugin: 'spring-boot'
|
||||||
|
|
||||||
ext['h2.version'] = '1.4.192'
|
|
||||||
|
|
||||||
jar {
|
jar {
|
||||||
baseName = 'spring-boot-sample-actuator'
|
baseName = 'spring-boot-sample-actuator'
|
||||||
}
|
}
|
||||||
|
|
@ -47,7 +45,7 @@ dependencies {
|
||||||
compile("org.springframework.boot:spring-boot-starter-jdbc")
|
compile("org.springframework.boot:spring-boot-starter-jdbc")
|
||||||
compile("org.springframework.boot:spring-boot-starter-security")
|
compile("org.springframework.boot:spring-boot-starter-security")
|
||||||
compile("org.springframework.boot:spring-boot-starter-web")
|
compile("org.springframework.boot:spring-boot-starter-web")
|
||||||
compile group:"com.h2database", name:"h2", version:property('h2.version')
|
compile("com.h2database:h2")
|
||||||
|
|
||||||
testCompile("org.springframework.boot:spring-boot-starter-test")
|
testCompile("org.springframework.boot:spring-boot-starter-test")
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue