Skip to content

Instantly share code, notes, and snippets.

@EugenyB
Created February 27, 2019 16:07
Show Gist options
  • Save EugenyB/521a7cbbb891402e3c335feb03e63c08 to your computer and use it in GitHub Desktop.
Save EugenyB/521a7cbbb891402e3c335feb03e63c08 to your computer and use it in GitHub Desktop.
Java 11 support by maven-compiler-plugin
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<release>11</release>
</configuration>
</plugin>
</plugins>
</build>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment