Skip to content

Instantly share code, notes, and snippets.

@lovelock
Created August 27, 2016 14:46
Show Gist options
  • Save lovelock/36817c7fd550d36bb049faf343da9dac to your computer and use it in GitHub Desktop.
Save lovelock/36817c7fd550d36bb049faf343da9dac to your computer and use it in GitHub Desktop.
修改eclipse中的maven默认使用的JRE版本
<profile>
<id>jdk-1.8</id>
<activation>
<activeByDefault>true</activeByDefault>
<jdk>1.8</jdk>
</activation>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
</properties>
</profile>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment