Skip to content

Commit

Permalink
Fix gradle build file to declare proper version of Java
Browse files Browse the repository at this point in the history
  • Loading branch information
gregturn committed Mar 17, 2015
1 parent d6b8fa0 commit ab0d6f4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions complete/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ repositories {
mavenCentral()
}

sourceCompatibility = 1.7
targetCompatibility = 1.7

dependencies {
compile("org.springframework.boot:spring-boot-starter-web")
compile("com.fasterxml.jackson.core:jackson-databind")
Expand Down
3 changes: 3 additions & 0 deletions initial/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ repositories {
mavenCentral()
}

sourceCompatibility = 1.7
targetCompatibility = 1.7

dependencies {
compile("org.springframework.boot:spring-boot-starter-web")
compile("com.fasterxml.jackson.core:jackson-databind")
Expand Down

0 comments on commit ab0d6f4

Please sign in to comment.