Created
August 27, 2016 14:46
-
-
Save lovelock/36817c7fd550d36bb049faf343da9dac to your computer and use it in GitHub Desktop.
修改eclipse中的maven默认使用的JRE版本
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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