Configures the maven-compiler-plugin to also compile the source code as Java 16

This commit is contained in:
Kristian Knarvik 2021-10-09 23:38:55 +02:00
parent be8de83bcc
commit 3a8943baef

View File

@ -75,8 +75,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<source>16</source>
<target>16</target>
</configuration>
</plugin>
</plugins>