Skip to content

Instantly share code, notes, and snippets.

@andgomes
Created October 7, 2016 19:28
Show Gist options
  • Save andgomes/662c8eddd50cb3f6ef2e7077bc686e9e to your computer and use it in GitHub Desktop.
Save andgomes/662c8eddd50cb3f6ef2e7077bc686e9e to your computer and use it in GitHub Desktop.
POM configurado para compilar na versão 1.7.
<project ...>
...
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
</plugins>
</build>
...
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment