Maven常见错误

1. Cannot change version of project facet Dynamic Web Module to 3.0

项目右键属性的Project Facets中把Dynamci Web Module设置为3.0,如果报错则直接修改项目文件:工程.settings目录下的org.eclipse.wst.common.project.facet.core.xml,同时把web.xml开头设置为:
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
然后执行项目右键Maven的Update Project

2. Dynamic Web Module 3.0 requires Java 1.6 or newer

在项目的pom.xml的标签中加入:

  1. <plugins>  
  2.     <plugin>  
  3.         <groupId>org.apache.maven.pluginsgroupId>  
  4.         <artifactId>maven-compiler-pluginartifactId>  
  5.         <version>2.3.2version>  
  6.         <configuration>  
  7.             <source>1.6source>  
  8.             <target>1.6target>  
  9.         configuration>  
  10.     plugin>  
  11. plugins>

右键项目->Build Path->Add Library

->Java Compile->1.8

->Project Facets->Java->1.8 

1、更新eclipse的classpath加入新依赖 
 
1、在dependencyManagement里面加入包括版本在内的依赖信息,如:      joda-time    joda-time    
1.6.2 
  
 
 
2、在同级的dependencies节点里面加入该依赖,如:      joda-time    
joda-time 
  
 
 
3、使用mvn eclipse:clean删除当前的工程配置文件,并用mvn eclipse:eclipse重新生成。  

4、导入或刷新该eclipse工程。  


2、工程配置未使用pom.xml更新 
问题:Project configuration is not up-to-date with pom.xml  
导入maven工程后,出现如下错误: 
Description    Resource    Path    Location    Type 
Project configuration is not up-to-date with pom.xml. Run project configuration update    rdc        line 1    Maven Configuration Problem  
解决办法就是: 
右键项目,【Maven】--》【Update Project Configuration...】即可。。。  



3、如何修改默认GBK的资源过滤 
Using platform encoding (GBK actually) to copy filtered resources  
需要指定字符集:  org.apache.maven.plugins  maven-resources-plugin  2.2     
UTF-8   
 
  
4、不支持范型的JDK版本问题 
 
maven打包时始终出现TripApplyAction.java:[267,6]-source 1.3中不支持泛型(请使用-source 5或更高版本以启用泛型)Map map = new HashMap();  
解决方法,指定JDK版本:  
在pom.xml文件中加入下一面一段语句来指定所用的版本,尽管在eclipse中配置了正确的“Build Path”:  
maven-compiler-plugin 1.5 1.5 UTF-8  
重新运行mvn clean eclipse:eclipse -Dmaven.test.skip=true,接着mvn package,问题解决。 
 


5、如何在使用命令方式下载依赖的同时下载源码 
 
1. 使用maven命令:mvn dependency:sources 下载依赖包的源代码。  
2. 使用参数: -DdownloadSources=true 下载源代码jar。 -DdownloadJavadocs=true 下载javadoc包。   
6、maven打包,忽略test的参数 
 
mvn -Dmaven.test.failure.ignore=true package mvn -Dmaven.test.skip=true clean package   
7、web.xml which will be ignored 
 
 
[WARNING] Warning: selected war files include a WEB-INF/web.xml which will be ignored (webxml attribute is missing from war task, or ignoreWebxml attribute is specified as 'true')   
在使用Maven 编译项目的时候会出现  
[WARNING] Warning: selected war files include a WEB-INF/web.xml which will be ignored  
解决方法:  
 
org.apache.maven.plugins maven-war-plugin 2.1.1  
WEB-INF/web.xml  
 


9、Maven3.04暂时不支持Servlet3的无web.xml形式 
 
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-war-plugin:2.1.1:war 

(default-war) on project prospringmvc01: Error assembling WAR: webxml attribute is required (or pre-existing WEB-INF/web.xml if executing in update mode) ->


参考:http://wenku.baidu.com/view/4fd678cd2cc58bd63186bdcd.html


你可能感兴趣的:(maven,Java)