美文网首页
在Myeclipse中使用Maven Update Projec

在Myeclipse中使用Maven Update Projec

作者: KardelShaw | 来源:发表于2017-12-20 16:20 被阅读0次

    原因:

    Maven会按照pom.xml配置文件来update project

    解决方案:

    在pom.xml指定所需要的jdk版本,参考下面代码,指定的是jdk1.6

    <build>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>3.1</version>
            <configuration>
              <source>1.6</source>
              <target>1.6</target>
            </configuration>
          </plugin>
        </plugins>
    </build>
    

    参考文章:

    解决maven项目update project会更改jdk版本问题

    相关文章

      网友评论

          本文标题:在Myeclipse中使用Maven Update Projec

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