summaryrefslogtreecommitdiffstats
path: root/parent
diff options
context:
space:
mode:
authorgjoranv <gv@oath.com>2018-04-24 15:03:06 +0200
committergjoranv <gv@oath.com>2019-01-21 15:09:20 +0100
commit5c4250265f87b2a2be2498bfe47242610f69a2b2 (patch)
treeea751bc61cf2368cb5d5a876dfadc7a964f20543 /parent
parent3722c1cdd91fce30d1c2538b2a8749d9321e194b (diff)
Use JDK 9.
Diffstat (limited to 'parent')
-rw-r--r--parent/pom.xml7
1 files changed, 5 insertions, 2 deletions
diff --git a/parent/pom.xml b/parent/pom.xml
index 5137a7cf171..39862e03ad6 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -99,8 +99,11 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
- <source>1.8</source>
- <target>1.8</target>
+ <jdkToolchain>
+ <version>9</version>
+ </jdkToolchain>
+ <source>1.9</source>
+ <target>1.9</target>
<showWarnings>true</showWarnings>
<optimize>true</optimize>
<showDeprecation>false</showDeprecation>