无法从父级解析 junit

can not resolve junit from parent

我有父项目和 4 个子模块。我像这样在父级中添加了 junit 依赖项:

<dependencys>
<dependency>
    <groupId>junit</groupId>
    <artifactId>junit</artifactId>
    <version>4.12</version>
    <scope>test</scope>
</dependency>
</dependencys>

现在我正在子模块中测试一些 java 类,我在 eclipse 中收到错误消息:

The import org.junit cannot be resolved

我是否必须向所有子模块添加 junit 依赖项或者最佳做法是什么?

将 junit 依赖项从 dependencyManagement 移动到 dependencies 应该可以解决问题