Commit e4321f28 authored by Greg Turnquist's avatar Greg Turnquist
Browse files

Fix gradle build file to declare proper version of Java

Showing with 6 additions and 0 deletions
+6 -0
......@@ -21,6 +21,9 @@ repositories {
mavenCentral()
}
sourceCompatibility = 1.7
targetCompatibility = 1.7
dependencies {
compile("org.springframework.boot:spring-boot-starter-web")
// tag::actuator[]
......
......@@ -21,6 +21,9 @@ repositories {
mavenCentral()
}
sourceCompatibility = 1.7
targetCompatibility = 1.7
dependencies {
// tag::jetty[]
compile("org.springframework.boot:spring-boot-starter-web") {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment