Upgrade non-specific guides to Java 8

This commit is contained in:
Greg Turnquist 2015-06-12 14:03:07 -04:00
parent 5fe2789259
commit 7e4f6dd74d
5 changed files with 15 additions and 0 deletions

View File

@ -19,6 +19,7 @@ You'll build a service that imports data from a CSV spreadsheet, transforms it w
== What you'll need
: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[]

View File

@ -21,6 +21,9 @@ repositories {
mavenCentral()
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
dependencies {
compile("org.springframework.boot:spring-boot-starter-batch")
compile("org.hsqldb:hsqldb")

View File

@ -13,6 +13,10 @@
<version>1.2.4.RELEASE</version>
</parent>
<properties>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>

View File

@ -21,6 +21,9 @@ repositories {
mavenCentral()
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
dependencies {
compile("org.springframework.boot:spring-boot-starter-batch")
compile("org.hsqldb:hsqldb")

View File

@ -13,6 +13,10 @@
<version>1.2.4.RELEASE</version>
</parent>
<properties>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>