Selaa lähdekoodia

Fix gradle build file to declare proper version of Java

Greg Turnquist 9 vuotta sitten
vanhempi
commit
e4321f2848
2 muutettua tiedostoa jossa 6 lisäystä ja 0 poistoa
  1. 3
    0
      complete/build.gradle
  2. 3
    0
      initial/build.gradle

+ 3
- 0
complete/build.gradle Näytä tiedosto

@@ -21,6 +21,9 @@ repositories {
21 21
     mavenCentral()
22 22
 }
23 23
 
24
+sourceCompatibility = 1.7
25
+targetCompatibility = 1.7
26
+
24 27
 dependencies {
25 28
     compile("org.springframework.boot:spring-boot-starter-web")
26 29
     // tag::actuator[]

+ 3
- 0
initial/build.gradle Näytä tiedosto

@@ -21,6 +21,9 @@ repositories {
21 21
     mavenCentral()
22 22
 }
23 23
 
24
+sourceCompatibility = 1.7
25
+targetCompatibility = 1.7
26
+
24 27
 dependencies {
25 28
     // tag::jetty[]
26 29
     compile("org.springframework.boot:spring-boot-starter-web") {