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

maven常见问题解决

时间:2015-12-01 19:41:47      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:maven 报错

问题1:导入项目提示  Cannot change version of project facet Dynamic Web Module to 2.5


解决方案:

     在工程目录下有一个.settings文件夹,打开org.eclipse.wst.common.project.facet.core.xml,做如下修改:

     将这一行的version改为2.5 就可以了 <installed facet="jst.web" version="2.5"/>



问题2: “Dynamic Web Module 3.0 requires Java 1.6 or newer.”错误


解决方案:

    eclipse maven   

    在项目的pom.xml的<build></build>标签中加入:   

        <plugins>  

            <plugin>  

                <groupId>org.apache.maven.plugins</groupId>  

                <artifactId>maven-compiler-plugin</artifactId>  

                <version>2.3.2</version>  

                <configuration>  

                    <source>1.6</source>  

                    <target>1.6</target>  

                </configuration>  

            </plugin>  

        </plugins>  

  

保存,项目构建完成后在项目文件夹上点右键,选择Maven->Update Project Configuration,问题解决。


问题3:导入项目报Maven error “Failure to transfer…”

解决方案:删除掉所有下载失败的包

linux:

find ~/.m2  -name "*.lastUpdated" -exec grep -q "Could not transfer" {} \; -print -exec rm {} \;

windows:

cd %userprofile%\.m2\repository
for /r %i in (*.lastUpdated) do del %i


本文出自 “不编程,无生活” 博客,请务必保留此出处http://51coding.blog.51cto.com/6079322/1718585

maven常见问题解决

标签:maven 报错

原文地址:http://51coding.blog.51cto.com/6079322/1718585

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