Skip to content

Instantly share code, notes, and snippets.

@seralf
Last active October 13, 2015 02:07
Show Gist options
  • Save seralf/4122280 to your computer and use it in GitHub Desktop.
Save seralf/4122280 to your computer and use it in GitHub Desktop.
maven compiler settings for java 1.6
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment