#574 - Add build profile for Java 16.

This commit is contained in:
Mark Paluch
2020-06-17 09:46:42 +02:00
parent 104febea4e
commit 174aafb46e

19
pom.xml
View File

@@ -192,6 +192,25 @@
</build>
</profile>
<profile>
<id>java-16</id>
<activation>
<jdk>16</jdk>
</activation>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<release>16</release>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<developers>