`

在Eclipse中创建maven项目出现的环境警告 j2se-1.5

阅读更多
Build path specifies execution environment J2SE-1.5. There are no JREs installed in the workspace that are strictly compatible with this environment.

新建maven2工程时,会自动将jre library指向为j2se-1.5,而不是我安装的jdk1.6,

在java build path 中奖j2se-1.5移除掉又选择jdk1.6后,右键项目maven -》update

project..又把我的jdk改成了1.5.

后来更改maven 的pom文件才解决这一问题:

   <build>
    <finalName>MavenProject</finalName>
	  <plugins>
	    <plugin>  
	    <groupId>org.apache.maven.plugins</groupId>  
	    <artifactId>maven-compiler-plugin</artifactId>  
	    <configuration>  
	        <source>1.6</source>  
	        <target>1.6</target>  
	    </configuration>  
	    </plugin>
	  </plugins>
</build>
分享到:
评论
5 楼 tmbfe 2015-10-08  
有用,谢谢!!
4 楼 fuyu_oo 2015-08-18  
多谢多谢多谢
3 楼 sachxp 2014-03-25  
感谢PO主,帮了我大忙,特意登录感谢。@xieyongwei 说的那个办法早试过了,没用的。每次Update都会变回JDK 1.5,然后报web.xml不兼容。
2 楼 jynine 2013-06-20  
xieyongwei 写道
没必要!
项目右键-->Properties-->Project Facets 右边看到java 版本选项没

这个我试过  也不得行。
按你的操作选择这个后,再右键项目maven -》update 又变成1.5了
1 楼 xieyongwei 2013-06-20  
没必要!
项目右键-->Properties-->Project Facets 右边看到java 版本选项没

相关推荐

Global site tag (gtag.js) - Google Analytics