Skip to content

Instantly share code, notes, and snippets.

@TopekoX
Last active October 17, 2017 03:10
Show Gist options
  • Save TopekoX/f606444b581b94b9ac2e160a9a26226c to your computer and use it in GitHub Desktop.
Save TopekoX/f606444b581b94b9ac2e160a9a26226c to your computer and use it in GitHub Desktop.
Build java 8 maven
<project>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment