Skip to content

Instantly share code, notes, and snippets.

@coder36
Created December 18, 2015 10:46
Show Gist options
  • Save coder36/bca3705e066fdd6fbaa7 to your computer and use it in GitHub Desktop.
Save coder36/bca3705e066fdd6fbaa7 to your computer and use it in GitHub Desktop.
Maven compiler plugin XML
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment