pom: Add <release> tag to ensure we’re only using Java 8 APIs.
1 files changed, 3 insertions(+), 2 deletions(-)

M pom.xml
M pom.xml +3 -2
@@ 54,8 54,9 @@ 
 				<artifactId>maven-compiler-plugin</artifactId>
 				<version>3.9.0</version>
 				<configuration>
-					<source>1.8</source>
-					<target>1.8</target>
+					<source>8</source>
+					<target>8</target>
+					<release>8</release>
 				</configuration>
 			</plugin>
 			<plugin>