版本Maven插件更新-父母检查在线Maven

时间:2019-02-27 10:04:36

标签: maven maven-plugin versions-maven-plugin

我有2个Maven项目(父级和子级),都具有0.0.1-SNAPSHOT。

父母的pom:

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <groupId>com.tmn</groupId>
  <artifactId>parent</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  <packaging>pom</packaging>

  <name>parent</name>
  <url>http://maven.apache.org</url>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>

</project>

孩子的pom:

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <groupId>com.tmn</groupId>
  <artifactId>child</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  <packaging>jar</packaging>

  <parent>
      <groupId>com.tmn</groupId>
      <artifactId>parent</artifactId>
      <version>0.0.1-SNAPSHOT</version>
  </parent>

  <name>child</name>
  <url>http://maven.apache.org</url>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>

</project>

我将父pom的版本更新为某个发行版本(例如1.0.0),并对父对象执行了mvn clean install。因此,我的Maven本地存储库包含已发布的Pom。现在,我想更新parent.version和我的孩子pom的版本。我跑

mvn versions:update-parent -DparentVersion=1.0.0 -DgenerateBackupPoms=false -Dmaven.repo.local=/path/to/repo

我希望它盲目地将parent.version更新为我在命令中提供的parentversion。但是我得到这个警告,并且它没有更新。

artifact com.tmn:parent: checking for updates 
[WARNING] Not updating version: could not resolve any versions

这里记录了一个类似的问题,但我不知道解决方法:https://github.com/mojohaus/versions-maven-plugin/issues/121

0 个答案:

没有答案