缺少依赖项版本 - io.vertx:vertx-stack-depchain:jar 的"dependencies.dependency.version" 丢失



尝试为父pom中的不同模块指定vertx版本。我的父pom文件是:

<groupId>com.abc.xyc</groupId>
<artifactId>parent</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Parent POM</name>
<modules>
...
<module>Server</module>
...
</modules>
<properties>
...
<vertx.version>3.8.2</vertx.version>
<vertx.verticle>com.abc.xyc.as4.MainVerticle</vertx.verticle>
<vertx-maven-plugin.version>1.0.22</vertx-maven-plugin.version>
<lmax.version>3.4.2</lmax.version>
...
</properties>
<dependencyManagement>
<dependencies>
...
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-stack-depchain</artifactId>
<version>${vertx.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-core</artifactId>
<version>${vertx.version}</version>
</dependency>
...
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
...
<plugins>
<plugin>
<groupId>io.reactiverse</groupId>
<artifactId>vertx-maven-plugin</artifactId>
<version>${vertx-maven-plugin.version}</version>
<executions>
<execution>
<id>vmp</id>
<goals>
<goal>initialize</goal>
<goal>package</goal>
</goals>
</execution>
</executions>
<configuration>
<redeploy>true</redeploy>
</configuration>
</plugin>
</plugins>
</pluginManageme>
</build>

这是我的孩子pom文件

<artifactId>Server</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<parent>
<groupId>com.abc.xyc</groupId>
<artifactId>parent</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>
<dependencies>
...
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-stack-depchain</artifactId>
</dependency>
... 
</dependencies>

我得到的错误是:io.vertx:vertx堆栈depchain:jar的'ddependencies.dependency.version'丢失。当我在child-pom中指定版本时,它工作得很好。我的问题是为什么它没有从我父母的pom那里得到版本?

这是因为它没有"管理";它自己的版本,它通过<dependencyManagement>管理其他依赖关系。

通常,不需要将vertx-stack-depchain作为依赖项导入,它应该是parent,或者像您在<scope>import</scope>的依赖项管理中所做的那样,然后您可以在您的子poms中执行以下操作:

<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-core</artifactId>
</dependency>

如果您仍然找到了导入dep链本身的充分理由,那么您需要指定版本。

相关内容

  • 没有找到相关文章

最新更新