Skip to content

Commit

Permalink
Upgrade to Java 8
Browse files Browse the repository at this point in the history
  • Loading branch information
gregturn committed Jun 12, 2015
1 parent 449099a commit 5e2176f
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ The `name` parameter value overrides the default value of "World" and is reflect

== What you'll need

:java_version: 1.7
:java_version: 1.7
:java_version: 1.8
:java_version: 1.8
include::https://raw.githubusercontent.com/spring-guides/getting-started-macros/master/prereq_editor_jdk_buildtools.adoc[]


Expand Down
4 changes: 2 additions & 2 deletions complete/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
2 changes: 1 addition & 1 deletion complete/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
</dependencies>

<properties>
<java.version>1.7</java.version>
<java.version>1.8</java.version>
</properties>


Expand Down
4 changes: 2 additions & 2 deletions initial/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
2 changes: 1 addition & 1 deletion initial/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
</dependencies>

<properties>
<java.version>1.7</java.version>
<java.version>1.8</java.version>
</properties>


Expand Down

0 comments on commit 5e2176f

Please sign in to comment.