Skip to content

Commit a6fc9b4

Browse files
authored
Update Maven compiler plugin to use Java 8
1 parent da1cf64 commit a6fc9b4

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

pom.xml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>com.manouti.examples</groupId>
66
<artifactId>completablefuture</artifactId>
77
<version>1.0</version>
8-
<description>Examples using CompletableFuture in Java 9</description>
8+
<description>Examples using CompletableFuture</description>
99

1010
<properties>
1111
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -17,7 +17,8 @@
1717
<artifactId>maven-compiler-plugin</artifactId>
1818
<version>3.7.0</version>
1919
<configuration>
20-
<release>9</release>
20+
<source>1.8</source>
21+
<target>1.8</target>
2122
</configuration>
2223
</plugin>
2324
<plugin>
@@ -45,4 +46,4 @@
4546
<version>4.12</version>
4647
</dependency>
4748
</dependencies>
48-
</project>
49+
</project>

0 commit comments

Comments
 (0)