chore: switch to Java 11
authorRonald Holshausen <rholshausen@dius.com.au>
Tue, 29 Sep 2020 02:08:57 +0000 (12:08 +1000)
committerRonald Holshausen <rholshausen@dius.com.au>
Tue, 29 Sep 2020 02:08:57 +0000 (12:08 +1000)
provider/build.gradle
provider/src/main/java/io/pactflow/example/sirenprovider/SirenProviderApplication.java
provider/src/test/java/io/pactflow/example/sirenprovider/SirenProviderApplicationTests.java

index f617265..6e73ef7 100644 (file)
@@ -6,7 +6,7 @@ plugins {
 
 group = 'io.pactflow.example'
 version = '0.0.1-SNAPSHOT'
-sourceCompatibility = '14'
+sourceCompatibility = '11'
 
 repositories {
        mavenCentral()
index 49b82a6..8384734 100644 (file)
@@ -6,8 +6,8 @@ import org.springframework.boot.autoconfigure.SpringBootApplication;
 @SpringBootApplication
 public class SirenProviderApplication {
 
-       public static void main(String[] args) {
-               SpringApplication.run(SirenProviderApplication.class, args);
-       }
+  public static void main(String[] args) {
+    SpringApplication.run(SirenProviderApplication.class, args);
+  }
 
 }
index f6fcd08..b47da1d 100644 (file)
@@ -6,8 +6,8 @@ import org.springframework.boot.test.context.SpringBootTest;
 @SpringBootTest
 class SirenProviderApplicationTests {
 
-       @Test
-       void contextLoads() {
-       }
+  @Test
+  void contextLoads() {
+  }
 
 }