Skip to content

Instantly share code, notes, and snippets.

@eppleton
Created September 26, 2020 06:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eppleton/937ad1e94c17f88621b382b154bbb35c to your computer and use it in GitHub Desktop.
Save eppleton/937ad1e94c17f88621b382b154bbb35c to your computer and use it in GitHub Desktop.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<dependencies>
<dependency>
<groupId>org.frgaal</groupId>
<artifactId>compiler-maven-plugin</artifactId>
<version>14.0.2</version>
</dependency>
</dependencies>
<configuration>
<compilerId>frgaal</compilerId>
<source>14</source>
<target>1.8</target>
<compilerArgs>
<arg>-Xlint:deprecation</arg>
<arg>--enable-safe-preview</arg>
</compilerArgs>
</configuration>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment