Skip to content

Instantly share code, notes, and snippets.

@soudmaijer
Last active December 12, 2019 07:29
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 soudmaijer/1720e97e360b376abeae7d5407306925 to your computer and use it in GitHub Desktop.
Save soudmaijer/1720e97e360b376abeae7d5407306925 to your computer and use it in GitHub Desktop.
Maven Java Compiler
<project>
...
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>9</source>
<target>9</target>
</configuration>
</plugin>
</plugins>
</build>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment