Skip to content

Instantly share code, notes, and snippets.

@digitalresistor
Created May 20, 2011 00:33
Show Gist options
  • Save digitalresistor/982102 to your computer and use it in GitHub Desktop.
Save digitalresistor/982102 to your computer and use it in GitHub Desktop.
Compile against JDK 1.6
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version> <!-- This will have to change depending on the latest version -->
<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