码迷,mamicode.com
首页 > 其他好文 > 详细

解决idea中maven默认jdk为1.5的问题 : IntelliJ IDEA 源值1.5已过时,将在未来所有版本中删除

时间:2019-04-23 12:47:51      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:art   根据   compile   .so   1.5   targe   com   pom.xml   compiler   

解决idea中maven默认jdk为1.5的问题

最近运行总是报警告:

IntelliJ IDEA 源值1.5已过时,将在未来所有版本中删除

发现是jdk版本问题, 即使自己修改structure中的版本, 还是会变回来, 经过百度后得知需要修改pom.xml就可以解决

修改pom.xml

这里<maven.compiler.source>11</maven.compiler.source>中的11就是指定jdk的版本

要根据自己实际情况来修改

  <properties>
    <maven.compiler.source>11</maven.compiler.source>
    <maven.compiler.target>11</maven.compiler.target>
  </properties>


  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>3.7.0</version>
      </plugin>
    </plugins>
  </build>

解决idea中maven默认jdk为1.5的问题 : IntelliJ IDEA 源值1.5已过时,将在未来所有版本中删除

标签:art   根据   compile   .so   1.5   targe   com   pom.xml   compiler   

原文地址:https://www.cnblogs.com/richardwlee/p/10755643.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!