1.父pom代码
<modelVersion>4.0.0</modelVersion>
<groupId>com.example</groupId>
<artifactId>SpringCloudDemo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>SpringCloudDemo</name>
<description>SpringCloudDemo</description>
<packaging>pom</packaging>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.apache.dubbo</groupId>
<artifactId>dubbo-spring-boot-starter</artifactId>
<version>${spring-boot-dubbo.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.apache.dubbo</groupId>
<artifactId>dubbo</artifactId>
<version>${spring-boot-dubbo.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.apache.dubbo</groupId>
<artifactId>dubbo-registry-nacos</artifactId>
<version>${spring-boot-dubbo-nacos.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
1.在子POM中,子POM扩展父POM在子POM中
<parent>
<groupId>com.example</groupId>
<artifactId>SpringCloudDemo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<dependencies>
<dependency>
<groupId>org.apache.dubbo</groupId>
<artifactId>dubbo-spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.apache.dubbo</groupId>
<artifactId>dubbo</artifactId>
</dependency>
<!-- Nacos依赖 -->
<dependency>
<groupId>org.apache.dubbo</groupId>
<artifactId>dubbo-registry-nacos</artifactId>
<version>3.0.1</version>
</dependency>
</dependencies>
1.但我的孩子pom下载2.7.4.1版本,没有使用家长Pom 3.1.9版本杜博,喜欢的图片
1.我有一个问题
我想使用3.1.9版本杜博,但在儿童Pom下载2.7.4.1版本杜博?怎么了?
1条答案
按热度按时间n7taea2i1#
问题可能出在父
pom
中的<dependentManagement/>
部分中定义依赖项时。举例来说:<type/>
和</scope>
是不正确的,因为dubbo-spring-boot-starter
依赖项不是pom
类型,你不应该将作用域定义为import
。根据官方文档,
import
作用域仅与pom
类型的depepndencies相关:此作用域仅在
<dependencyManagement>
节中的pom
类型的依赖项上受支持。它指示依赖项将被指定POM的<dependencyManagement>
部分中的有效依赖项列表替换。由于它们被替换,范围为import
的依赖项实际上并不参与限制依赖项的传递性。尝试从父
pom
的<dependentManagement/>
部分中的所有依赖项中删除类型和作用域。这只是一个猜测。