Skip to content

Instantly share code, notes, and snippets.

@rvazquezglez
Created December 22, 2012 08:20
Show Gist options
  • Save rvazquezglez/4358046 to your computer and use it in GitHub Desktop.
Save rvazquezglez/4358046 to your computer and use it in GitHub Desktop.
Plugin para forzar la versión del jdk en maven
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</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