Procházet zdrojové kódy

Fix gradle build file to declare proper version of Java

Greg Turnquist před 11 roky
rodič
revize
4feb3e8455
2 změnil soubory, kde provedl 6 přidání a 0 odebrání
  1. 3
    0
      complete/build.gradle
  2. 3
    0
      initial/build.gradle

+ 3
- 0
complete/build.gradle Zobrazit soubor

21
     mavenCentral()
21
     mavenCentral()
22
 }
22
 }
23
 
23
 
24
+sourceCompatibility = 1.7
25
+targetCompatibility = 1.7
26
+
24
 dependencies {
27
 dependencies {
25
     compile("org.springframework.boot:spring-boot-starter-web")
28
     compile("org.springframework.boot:spring-boot-starter-web")
26
     testCompile("junit:junit")
29
     testCompile("junit:junit")

+ 3
- 0
initial/build.gradle Zobrazit soubor

21
     mavenCentral()
21
     mavenCentral()
22
 }
22
 }
23
 
23
 
24
+sourceCompatibility = 1.7
25
+targetCompatibility = 1.7
26
+
24
 dependencies {
27
 dependencies {
25
     compile("org.springframework.boot:spring-boot-starter-web")
28
     compile("org.springframework.boot:spring-boot-starter-web")
26
     testCompile("junit:junit")
29
     testCompile("junit:junit")