如何在Maven多模块项目中添加test-jar和jar作为依赖项?

时间:2019-09-11 14:57:43

标签: java maven

我有一个表单的Maven多模块项目

  • 主要
    • 查询
    • ...
    • 存储
      • 存储配置
      • 存储实用程序
      • 常用存储
    • 工具

我有一个类com.vnera.storage.config.ElasticsearchEmbedded.java驻留在storage-config的测试文件夹中,我想在storage-utils范围内的类TestStorageUtils中在test中使用。 storage-utils在主要阶段也需要storage-config

在查询模块中,我添加了storage-utils test-jar的依赖项。但是,每当我尝试通过TestStorageUtils模块中的测试访问query时。它引发了以下错误。所有编译运行正常。

java.lang.NoClassDefFoundError: com/van/storage/config/ElasticsearchEmbedded

    at com.van.storage.utils.TestStorageUtils.setUp(TestStorageUtils.java:92)
    at com.van.query.SearchUtilsTests.setUp(SearchUtilsTests.java:90)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:498)
    at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50)
    at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
    at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47)
    at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:24)
    at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27)
    at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
    at org.junit.runner.JUnitCore.run(JUnitCore.java:137)
    at com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.java:68)
    at com.intellij.rt.execution.junit.IdeaTestRunner$Repeater.startRunnerWithArgs(IdeaTestRunner.java:47)
    at com.intellij.rt.execution.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:242)
    at com.intellij.rt.execution.junit.JUnitStarter.main(JUnitStarter.java:70)
Caused by: java.lang.ClassNotFoundException: com.van.storage.config.ElasticsearchEmbedded
    at java.net.URLClassLoader.findClass(URLClassLoader.java:381)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:349)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
    ... 17 more

必要的pom放在下面:-

有人可以让我知道出了什么问题吗,我该如何解决呢?

Maven版本-3.5.3

1 个答案:

答案 0 :(得分:0)

query模块还需要声明storage-config的test-jar依赖关系。

 <dependency>
            <groupId>com.van</groupId>
            <artifactId>storage-config</artifactId>
            <version>${main.version}</version>
            <classifier>tests</classifier>
            <scope>test</scope>
            <type>test-jar</type>
        </dependency>