Skip to content

Instantly share code, notes, and snippets.

@oreganoli
Created December 13, 2019 14:20
Show Gist options
  • Save oreganoli/d94ad79b36f3581e632cfc691e0bf7df to your computer and use it in GitHub Desktop.
Save oreganoli/d94ad79b36f3581e632cfc691e0bf7df to your computer and use it in GitHub Desktop.
Maven compiler plugin for Java 13 with preview features
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<compilerArgs>
<arg>--enable-preview</arg>
</compilerArgs>
<source>13</source>
<target>13</target>
</configuration>
</plugin>
</plugins>
</build>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment