Невозможно найти банку в Maven Dependency Management - PullRequest
0 голосов
/ 25 ноября 2018

У меня есть 2 проекта testing.parent и testing.child.Структура проекта выглядит следующим образом:

enter image description here Их индивидуальные номера указаны ниже:

testing.parent

<project>
    <modelVersion>4.0.0</modelVersion>
    <groupId>testing.group</groupId>
    <artifactId>testing.parent</artifactId>
    <version>1.0</version>
    <packaging>pom</packaging>
    <name>testing.parent</name>
    <url>http://maven.apache.org</url>

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>log4j</groupId>
                <artifactId>log4j</artifactId>
                <version>1.2.17</version>
            </dependency>
        </dependencies>
    </dependencyManagement>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>3.8.1</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>    

testing.child

<project>
    <modelVersion>4.0.0</modelVersion>
    <groupId>testing.group</groupId>
    <artifactId>testing.child</artifactId>
    <version>1.1</version>
    <packaging>jar</packaging>
    <name>testing.child</name>
    <url>http://maven.apache.org</url>

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>testing.group</groupId>
                <artifactId>testing.parent</artifactId>
                <version>1.0</version>
                <scope>import</scope>
                <type>pom</type>
            </dependency>
        </dependencies>
    </dependencyManagement>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>3.8.1</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>

Чтобы протестировать dependency management, я попытался import log4j jar для child проекта, но все же jarнедоступно в дочернем проекте.Это правильный способ импортировать банки?

Ответы [ 2 ]

0 голосов
/ 25 ноября 2018

Если вы добавляете нижнюю часть в дочерний файл pom.xml, вам не нужно импортировать зависимость lof4j отдельно, хотя дочерний pom.xml.

<parent>
    <artifactId>testing.parent</artifactId>
    <groupId>testing.group</groupId>
    <version>1.0</version>
</parent>
0 голосов
/ 25 ноября 2018

Это правильный способ импорта банок?

Да , включите log4j в секцию dependency дочернего элемента pom.xml.

<dependencies>
    <dependency>
        <groupId>log4j</groupId>
        <artifactId>log4j</artifactId>
        <version>1.2.17</version> <!-- version is optional when using dependency management -->
    </dependency>
    <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>3.8.1</version>
        <scope>test</scope>
    </dependency>
</dependencies>

Кроме того, обязательно укажите parent от ребенка, для этого включите в него pom.xml следующее:

<parent>
    <artifactId>testing.parent</artifactId>
    <groupId>testing.group</groupId>
    <version>1.0</version>
</parent>

, обеспечивающееаналогичная ссылка в родителе pom.xml как

<modules>
    <module>testing.child</module>
</modules>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...