为什么 Maven 无法管理 war 类型依赖的版本?

Why Maven fails to manage version of war type dependency?

我们有一个多模块项目,我们在 dependencyManagement 标签下的 parent pom 中定义了几个依赖项来管理依赖项版本。

它适用于多个模块,但只有一个。

Parent 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>my.org.product</groupId>
    <artifactId>product-parent</artifactId>
    <version>1.0.0-SNAPSHOT</version>
    <packaging>pom</packaging>

    <properties>
        <parade-web.version>2.0.0</parade-web.version>
        <!-- other properties -->
    </properties>

    <modules>
        <module>../ProductWeb</module>
        <!-- other modules -->
    </modules>

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>my.org.parade</groupId>
                <artifactId>ParadeWeb</artifactId>
                <version>${parade-web.version}</version>
            </dependency>
            <!-- other dependencies -->
        </dependencies>
    </dependencyManagement>
</project>

ProductWeb pom

<?xml version="1.0" encoding="UTF-8"?>
<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/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>my.org.product</groupId>
        <artifactId>product-parent</artifactId>
        <version>1.0.0-SNAPSHOT</version>
        <relativePath>../productparent</relativePath>
    </parent>
    <artifactId>ProductWeb</artifactId>
    <packaging>war</packaging>
    <version>1.0.0-SNAPSHOT</version>

    <dependencies>
        <dependency> <!-- 'dependencies.dependency.version' for my.org.parade:ParadeWeb:jar is missing. -->
            <groupId>my.org.parade</groupId>
            <artifactId>ParadeWeb</artifactId>
            <type>war</type>
        </dependency>
        <!-- other dependencies -->
    </dependencies>
</project>

如果我在我的 ProductWeb pom 中添加 <version>${parade-web.version}</version>,NetBeans war 会告诉我

Overrides version defined in DependencyManagement. The managed version is 2.12.2-RELEASE.

这个依赖与另一个依赖的唯一区别是war类型,但我不明白为什么依赖管理无法设置它的版本。

更新

我设法省略了版本标签,但我需要在 parent 和 child 上添加 <type>war</type>

我不明白。 parent 是否尝试解析寻找 war 的依赖版本,但没有通过它的 children 传递它?

<type>war</type> 添加到 dependencyManagement。这应该可以解决问题。