eclipse中解决update maven之后jre被改成1.5的问题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了eclipse中解决update maven之后jre被改成1.5的问题相关的知识,希望对你有一定的参考价值。
在项目的pom.xml中加入下面的代码就能解决
<build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> </plugins> </build>
然后重新update maven就可以自动改成1.8了
以上是关于eclipse中解决update maven之后jre被改成1.5的问题的主要内容,如果未能解决你的问题,请参考以下文章
eclipse maven update error 解决方法
update maven后Eclipse报错:java.lang.ClassNotFoundException: ContextLoaderL
eclipse项目右键菜单的refresh选项与maven选项的update project的区别
解决Maven的Could not update project XXX configuration NullPointerException 错误
项目执行maven update时,报:Preference node "org.eclipse.wst.validation"...
MyEclipse创建Maven项目问题, problem Occurred:Updating maven projects has encountered a problem.