zoukankan      html  css  js  c++  java
  • maven继承parent,relativePath warn信息的解决办法

    往下看之前一定要先看

    %MAVEN_HOME%/conf/settings.xml

    配置文件的是否更改了,是否配置正确

    <mirror>       
          <id>nexus</id>        
          <url>http://maven.xxxxxx.com/nexus/content/groups/public/</url>       
          <mirrorOf>central</mirrorOf>
        </mirror>
        <!--
        <mirror>
          <id>alimaven</id>
          <name>aliyun maven</name>
          <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
          <mirrorOf>central</mirrorOf>        
        </mirror>
        -->

    转自:http://blog.sina.com.cn/s/blog_56d8ea9001013fz9.html
    比如:
    <parent>
    <groupId>com.tenace</groupId>
    <artifactId>tenace</artifactId>
    <version>2.0.1</version>
    <relativePath></relativePath> //刚开始无此句
    </parent>
    <groupId>com.joinspider</groupId>
    <artifactId>spiderengine</artifactId>
    <version>2.6.0-SNAPSHOT</version>

    tenace作为pom项目已经发布至repo,如果没有指定relativapath。则mvn -X -e clean package可以看到如下警告信息:
    [WARNING]
    [WARNING] Some problems were encountered while building the effective model for
    com.joinspider:spiderengine:jar:2.6.0-SNAPSHOT
    [WARNING] 'parent.relativePath' points at com.joinspider:joinspider instead of c
    om.tenace:tenace, please verify your project structure @ line 4, column 10
    [WARNING]
    [WARNING] It is highly recommended to fix these problems because they threaten t
    he stability of your build.
    [WARNING]
    [WARNING] For this reason, future Maven versions might no longer support buildin
    g such malformed projects.

    解决办法则是加上<relativePath></relativePath>。
    说明见链接:http://maven.apache.org/ref/3.0.3/maven-model/maven.html#class_parent

    说明如下:
    The relative path of the parent pom.xml file within the check out. If not specified, it defaults to ../pom.xml. Maven looks for the parent POM first in this location on the filesystem, then the local repository, and lastly in the remote repo. relativePath allows you to select a different location, for example when your structure is flat, or deeper without an intermediate parent POM. However, the group ID, artifact ID and version are still required, and must match the file in the location given or it will revert to the repository for the POM. This feature is only for enhancing the development in a local checkout of that project. Set the value to an empty string in case you want to disable the feature and always resolve the parent POM from the repositories.
    Default value is: ../pom.xml.

  • 相关阅读:
    Android Bundle存储数据类型
    半监督学习(一)
    【读书笔记】Flickr 网站用户标签的质量控制对策
    [算法][LeetCode]Spiral Matrix
    SQL Server 损坏修复 之一 常见错误解读
    如何解决 SQL Server 中的锁升级所致的阻塞问题
    SQL with(unlock)与with(readpast) (转)
    SQL锁(转)
    无法执行 varchar 值到 varchar 的隐式转换,原因是,由于排序规则冲突,该值的排序规则未经解析。
    Java 内存回收机制——GC机制
  • 原文地址:https://www.cnblogs.com/exmyth/p/6210318.html
Copyright © 2011-2022 走看看