Skip to content

Instantly share code, notes, and snippets.

@eddumelendez
Created December 30, 2013 15:30
Show Gist options
  • Save eddumelendez/8183469 to your computer and use it in GitHub Desktop.
Save eddumelendez/8183469 to your computer and use it in GitHub Desktop.
set maven compiler
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<target>${java-version}</target>
<source>${java-version}</source>
</configuration>
</plugin>
</plugins>
</build>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment