Skip to content

Instantly share code, notes, and snippets.

@mig82
Created October 12, 2017 20:19
Show Gist options
  • Save mig82/a72ab0b0b040518c0ea60b1d326474c8 to your computer and use it in GitHub Desktop.
Save mig82/a72ab0b0b040518c0ea60b1d326474c8 to your computer and use it in GitHub Desktop.
Force Maven to work with Java 8
<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>
<dependencies>
...
</dependencies>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment