maven配置jdk版本
修改默认的jdk版本
在maven安装目录 apache-maven-3.6.1\conf\setting.xml 添加
<profile>
<id>jdk18</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>
---------------
我每一次回头,都感觉自己不够努力,所以我不再回头。
---------------