Skip to content

Instantly share code, notes, and snippets.

@mariuszs
Created November 12, 2013 19:23
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 mariuszs/7437074 to your computer and use it in GitHub Desktop.
Save mariuszs/7437074 to your computer and use it in GitHub Desktop.
<pluginManagement>
...
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
</plugin>
...
</pluginManagement>
<plugins>
...
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<inherited>true</inherited>
<configuration>
<fork>true</fork>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
...
<plugins>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment