IDEA中maven总是自动跳到1.5jdk

  1. 找到本地maven的配置文件:apache-maven-3.6.2/conf/setting.xml(这是我的目录)。
  2. 打开配置文件,在大概182行的profiles标签内添加如下配置:(我用的是jdk11)
<profile>
      <id>jdk-11</id>
      <activation>
        <activeByDefault>true</activeByDefault>
        <jdk>11</jdk>
      </activation>
      <properties>
        <maven.compiler.source>11</maven.compiler.source>
        <maven.compiler.target>11</maven.compiler.target>
        <maven.compiler.compilerVersion>11</maven.compiler.compilerVersion>
      </properties>
</profile>
  1. 重启IDEA即可

你可能感兴趣的:(Java)