Skip to content

Instantly share code, notes, and snippets.

@racinmat
Created March 27, 2018 11:06
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 racinmat/0b2d55826010ba3418dccf7b7bf4e6c8 to your computer and use it in GitHub Desktop.
Save racinmat/0b2d55826010ba3418dccf7b7bf4e6c8 to your computer and use it in GitHub Desktop.
build java 8
<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