Commit 219e5971 authored by Greg Turnquist's avatar Greg Turnquist
Browse files

Upgrade to Java 8

parent faa248b2
Showing with 7 additions and 7 deletions
+7 -7
......@@ -18,7 +18,7 @@ You'll build a simple web application with Spring Boot and add some useful servi
== What you'll need
:java_version: 1.7
:java_version: 1.8
include::https://raw.githubusercontent.com/spring-guides/getting-started-macros/master/prereq_editor_jdk_buildtools.adoc[]
include::https://raw.githubusercontent.com/spring-guides/getting-started-macros/master/how_to_complete_this_guide.adoc[]
......
......@@ -21,8 +21,8 @@ repositories {
mavenCentral()
}
sourceCompatibility = 1.7
targetCompatibility = 1.7
sourceCompatibility = 1.8
targetCompatibility = 1.8
dependencies {
compile("org.springframework.boot:spring-boot-starter-web")
......
......@@ -34,7 +34,7 @@
</dependencies>
<properties>
<java.version>1.7</java.version>
<java.version>1.8</java.version>
</properties>
<build>
......
......@@ -21,8 +21,8 @@ repositories {
mavenCentral()
}
sourceCompatibility = 1.7
targetCompatibility = 1.7
sourceCompatibility = 1.8
targetCompatibility = 1.8
dependencies {
// tag::jetty[]
......
......@@ -21,7 +21,7 @@
</dependencies>
<properties>
<java.version>1.7</java.version>
<java.version>1.8</java.version>
</properties>
......
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