Re-enable devtools for samples

- Change plugin config not to exclude devtools.
- Add spring.h2.console.enabled=true to samples
  using embedded db.
- Fixes #623
This commit is contained in:
Janne Valkealahti
2019-01-20 14:02:05 +00:00
parent 4feeb196cf
commit 5ccc82af1c
4 changed files with 14 additions and 0 deletions

View File

@@ -480,6 +480,9 @@ configure(sampleProjects()) {
testCompile "org.hamcrest:hamcrest-library"
testCompile "junit:junit"
}
bootJar {
excludeDevtools = false
}
build.dependsOn bootJar
}

View File

@@ -4,3 +4,7 @@ logging:
security:
basic:
enabled: false
spring:
h2:
console:
enabled: true

View File

@@ -5,3 +5,7 @@ logging:
security:
basic:
enabled: false
spring:
h2:
console:
enabled: true

View File

@@ -4,6 +4,9 @@ logging:
spring:
profiles:
active: jpa
h2:
console:
enabled: true
security:
basic:
enabled: false