标签:profile spring active 版本 mave maven 代码 repo 使用
在maven的setting中加上如下代码,Maven设置默认使用JDK1.8。
<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>
ieda配置如下图:
setting选择后设置maven位自己的本地maven。
OK结束。
标签:profile spring active 版本 mave maven 代码 repo 使用
原文地址:https://www.cnblogs.com/xiaoni-fighting/p/11063635.html