美文网首页
Maven配置默认JDK

Maven配置默认JDK

作者: 随便写点文章 | 来源:发表于2019-06-03 23:09 被阅读0次

setting.xml中的profiles增加profile

<profile>
      <id>1.8</id>
      <activation>
        <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>

setting.xml中激活profile

<activeProfiles>
    <activeProfile>1.8</activeProfile>
</activeProfiles>

相关文章

网友评论

      本文标题:Maven配置默认JDK

      本文链接:https://www.haomeiwen.com/subject/ywckxctx.html