Maven使用中的常见问题整理

更新时间:2023-05-20 23:03:20 阅读: 评论:0

Maven使用常见问题整理
1、更新eclip的classpath加入新依赖
1饿殍是什么意思、在dependencyManagement里面加入包括版本在内的依赖信息,如:
做饭日记300字        <dependency>
            <groupId>joda-time</groupId>
            <artifactId>joda-time</artifactId>
            <version>1.6.2</version>
        </dependency>
2、在同级的dependencies节点里面加入该依赖,如:
        <dependency>
            <groupId>joda-time</groupId>
            <artifactId>joda-time</artifactId>
        </dependency>
3、使用mvn eclip:clean删除当前的工程配置文件,并用mvn eclip:eclip重新生成。
4、导入或刷新该eclip工程。
2、工程配置未使用l更新
问题:Project configuration is not up-to-date l
净利润增长率公式
导入maven工程后,出现如下错误:
Description    Resource    Path    Location    Type
Project configuration is not up-to-date l. Run project configuration update    rdc        line 1    Maven Configuration Problem
解决办法就是:
右键项目,【Maven--》【Update 】即可。。。
3、如何修改默认GBK的资源过滤
闻鸡起舞成语故事Using platform encoding (GBK actually) to copy filtered resources
需要指定字符集:
<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-resources-plugin</artifactId>
    <version>2.2</version>
    <configuration>
          <encoding>UTF-8</encoding>
    </configuration>
</plugin>
4、不支持范型的JDK版本问题
maven打包时始终出现TripApplyAction.java:[267,6]-source 1.3中不支持泛型(请使用-source 5或更高版本以启用泛型)Map<String, Object> map = new HashMap<String, Object>();
解决方法,指定JDK版本:
l文件中加入下一面一段语句来指定所用的版本,尽管在eclip中配置了正确的“Build Path”
游刃有余的意思是<build>
  <plugins>
      <plugin>我的一天作文600字
          <artifactId>maven-compiler-plugin</artifactId>
          <configuration>
              <target>1.5</target>
              <source>1.5</source>
              <encoding>UTF-8</encoding>
手机如何备份          </configuration>
      </plugin>
  </plugins>
</build>
重新运行mvn clean eclip:eclip -st.skip=true,接着mvn package,问题解决。
5、如何在使用命令方式下载依赖的同时下载源码
1. 使用maven命令:mvn dependency:sources 下载依赖包的源代码。
2. 使用参数: -DdownloadSources=true 下载源代码jar -DdownloadJavadocs=true 下载javadoc包。
7、maven打包,忽略test的参数
mvn -st.failure.ignore=true package
mvn -st.skip=true clean package
8、l which will be ignored
[WARNING] Warning: lected war files include a l which will be ignored
(webxml attribute is missing from war task, or ignoreWebxml attribute is specified as 'true')
在使用Maven 编译项目的时候会出现
[WARNING] Warning: lected war files include a l which will be ignored
解决方法:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.1.1</version>
<configuration>
怎么清理耳朵
<!-- /plugins/maven-war-plugin/ -->
<packagingExcludes>l</packagingExcludes>
</configuration>
</plugin>
9、Maven3.04暂时不支持Servlet3的无l形式
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-war-plugin:2.1.1:war (default-war) on project prospringmvc01: Error asmbling WAR: webxml attribute is required (or pre-existing l if executing in update mode) ->

本文发布于:2023-05-20 23:03:20,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/fan/89/920923.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:依赖   使用   版本   下载
相关文章
留言与评论(共有 0 条评论)
   
验证码:
推荐文章
排行榜
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图