Skip to content

Instantly share code, notes, and snippets.

@cedbossneo
Created February 14, 2014 14:15
Show Gist options
  • Save cedbossneo/9001684 to your computer and use it in GitHub Desktop.
Save cedbossneo/9001684 to your computer and use it in GitHub Desktop.
Compiler plugin to specify Java Version Level
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
</configuration>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment