Это правильный способ импорта банок?
Да , включите 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>