Maven:为什么在父 pom 中声明的依赖项没有被子 pom 继承?

Maven: why are dependencies declared in parent pom not inherited by child pom?

当我在父 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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.demo</groupId>
    <artifactId>deps</artifactId>
    <packaging>pom</packaging>
    <version>0.0.1-SNAPSHOT</version>
<dependencyManagement>
        <dependencies>    
               <!-- not relevant for this question -->
        </dependencies>
    </dependencyManagement>
<dependencies>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-core</artifactId>
            <version>5.3.12</version>
        </dependency>
</dependencies>
</project>

上面我已经声明 spring-core 作为父 pom 的依赖项。
现在在子 pom 中,我正在导入父 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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.demo</groupId>
    <artifactId>deps2</artifactId>
    <version>0.0.1-SNAPSHOT</version>

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>com.demo</groupId>
                <artifactId>deps</artifactId>
                <version>0.0.1-SNAPSHOT</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>

    <dependencies>
                           <!-- not relevant for this question -->

    </dependencies>
</project>

现在查看子pom继承的依赖,有none。 spring-core jar 在所有情况下都不应该被子项目继承。由于父pom直接依赖这个jar,是不是子工程不传on/inherited

注:本题与依赖管理和版本无关
我理解dependencyManagement,就是保证一组项目有相同的版本和依赖范围。

您的子 pom 是一个独立的 pom,因为您没有指定父 pom。您可以通过添加此标记来定义父代:

<parent>
    <groupId>yourpackage</groupId>
    <artifactId>yourartifactid</artifactId>
    <version>version</version>
</parent>

对于您的情况,此块应该可以解决问题:

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

我知道你的问题不是关于依赖管理;但是对于那些不知道区别的人,我会写一些关于它的话。

请注意,通过在 <dependenciesManagement> 中导入您的 pom 不会产生任何影响,因为它仅定义了使用意图而不是具体导入。 <dependencies> 包含具体的导入,并且只有它的内容可以在您的应用程序中使用。

放置父标签和物料清单有区别(在依赖管理部分导入pom)

使用<parent>是maven中的“真正的继承”。您在子 pom 上定义此标记,这样您将自动获得父 pom 中定义的所有依赖项(还有属性和插件)。

另一方面,物料清单(在 official documentation 中是这样调用的)本身不导入任何依赖项,但是它允许避免在 pom 中指定依赖项的版本您的应用程序,因为您在此 BOM 中定义了它们。

所以要回答你的问题,你真的应该将子 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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.demo</groupId>
    <artifactId>deps2</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <parent>
       <groupId>com.demo</groupId>
       <artifactId>deps</artifactId>
       <version>0.0.1-SNAPSHOT</version>
    </parent>
    <dependencies>
                           <!-- not relevant for this question -->

    </dependencies>
</project>