Maven:子模块无法继承父模块的依赖项

问题描述 投票:0回答:2

这是我的父母 pom

    <modelVersion>4.0.0</modelVersion>

    <groupId>com.github.fish56</groupId>
    <artifactId>MavenModules</artifactId>
    <version>1.0-SNAPSHOT</version>
    <modules>
        <module>dao</module>
    </modules>
    <packaging>pom</packaging>
    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.12</version>
        </dependency>
    </dependencies>

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>org.projectlombok</groupId>
                <artifactId>lombok</artifactId>
                <version>1.18.6</version>
                <scope>import</scope>
            </dependency>
            <dependency>
                <groupId>junit</groupId>
                <artifactId>junit</artifactId>
                <version>4.12</version>
            </dependency>
        </dependencies>
    </dependencyManagement>

这是我的子模块的 pom

    <parent>
        <artifactId>MavenModules</artifactId>
        <groupId>com.github.fish56</groupId>
        <version>1.0-SNAPSHOT</version>
        <relativePath>../pom.xml</relativePath>
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <artifactId>dao</artifactId>

    <dependencies>
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
        </dependency>
    </dependencies>

我希望子模块可以继承父模块的依赖,但是失败了。

我无法在我孩子的 pom 中使用 Lombok 或 Junit。

这是我的文件树

.
├── dao
│   ├── pom.xml
│   ├── src
│   └── target
├── pom.xml

我认为应该有一种方法可以在所有模块之间共享一些依赖项,但我找不到解决方案。

maven maven-3 dependency-management
2个回答
11
投票

在父级

POM
中,
<dependencies>
<dependencyManagement>
的主要区别如下:

<dependencies>
部分中指定的工件将ALWAYS作为子模块的依赖项包含在内。

<dependencyManagement>
部分中指定的工件,如果也在子模块本身的 <dependencies> 部分中指定,则将
仅包含在子模块中。

请通过以下链接了解更多信息:

Maven 中依赖管理和依赖关系的区别


1
投票
您导入 lombok BOM

<dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.6</version> <scope>import</scope> </dependency>

然后你尝试将它用作依赖项。但 BOM 只是 dependencyManagement 条目的列表。它不能是子项目的依赖项。

© www.soinside.com 2019 - 2024. All rights reserved.