为什么“mvn编译”需要“test-jar”依赖项

2022-09-02 09:57:34

我在多模块项目中使用依赖项时遇到问题。例如,当我声明模块依赖于模块时(完整代码在这里):test-jarcleartk-syntaxcleartk-tokentest-jar

<modelVersion>4.0.0</modelVersion>
<groupId>org.cleartk</groupId>
<artifactId>cleartk-syntax</artifactId>
<version>0.5.0-SNAPSHOT</version>
<name>cleartk-syntax</name>
...
<dependencies>
    ...
    <dependency>
        <groupId>org.cleartk</groupId>
        <artifactId>cleartk-token</artifactId>
        <version>0.7.0-SNAPSHOT</version>
        <type>test-jar</type>
        <scope>test</scope>
    </dependency>

如果我使用maven 2运行,我得到以下错误:mvn compile

[INFO] ------------------------------------------------------------------------
[ERROR] BUILD ERROR
[INFO] ------------------------------------------------------------------------
[INFO] Failed to resolve artifact.

Missing:
----------
1) org.cleartk:cleartk-token:test-jar:tests:0.7.0-SNAPSHOT

如果我使用maven 3,我得到错误:

[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 4.654s
[INFO] Finished at: Mon Jan 24 21:19:17 CET 2011
[INFO] Final Memory: 16M/81M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal on project cleartk-syntax: Could not resolve
dependencies for project org.cleartk:cleartk-syntax:jar:0.5.0-SNAPSHOT: Could
not find artifact org.cleartk:cleartk-token:jar:tests:0.7.0-SNAPSHOT

在后一种情况下,我特别困惑,因为我认为它应该寻找类型而不是类型的工件。test-jarjar

使用 maven 2 或 maven 3,我可以通过运行 来编译它。使用maven 3,我还可以通过运行来编译它。mvn compile package -DskipTestsmvn compile test-compile

但是,为什么 maven 2 或 maven 3 在阶段中寻找依赖关系呢?难道不应该等到阶段才去寻找这样的依赖关系吗?test-jarcompiletest-compile

更新:答案是,在我的编译阶段使用的maven-exec-plugin需要对scope:test中的工件进行依赖关系解析。我创建了一个功能请求来删除 scope:test 依赖项


答案 1

在我的情况下,根本原因是应该在类型的作用域中用作依赖项的模块不包括所需的配置。如果没有下面的代码段,则在调用相应的模块时不会部署测试 jar。testtest-jarmaven-jar-pluginmvn deploy

<build>
<plugins>
  <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-jar-plugin</artifactId>
    <executions>
      <execution>
        <goals>
          <goal>test-jar</goal>
        </goals>
      </execution>
    </executions>
  </plugin>
</plugins>

有关更多详细信息,请参阅 https://maven.apache.org/guides/mini/guide-attached-tests.html


答案 2

这对我来说似乎是一个明确的错误。

我有同样的问题,并测试了Maven 3.0.1和3.0.2。验证不会失败,只有编译步骤会失败。与 Maven 3 休息,但工作。mvn compilemvn test-compile

编译阶段似乎在反应器中寻找测试jar工件,然后重新购,但它不应该,因为依赖关系在测试范围内。测试范围项目应在测试编译期间解决,而不是编译期间解决。

因此,我认为可以通过将maven-compiler-plugin的testCompile目标映射到编译阶段,而不是默认的测试编译阶段来解决这个问题。

我把它添加到我的pom中,就在上游pom中添加测试罐创建的部分旁边:

  <!-- there is a bug in maven causing it to resolve test-jar types
       at compile time rather than test-compile. Move the compilation 
       of the test classes earlier in the build cycle -->
  <plugin>
    <artifactId>maven-compiler-plugin</artifactId>
    <executions>
      <execution>
        <id>default-testCompile</id>
        <phase>compile</phase>
        <goals>
          <goal>testCompile</goal>
        </goals>
      </execution>
    </executions>
  </plugin>

但这也行不通,因为编译和测试编译之间的五个阶段尚未运行并设置测试类路径之类的东西。

我想在修复此错误之前,真正的解决方法是使用代替。test-compilecompile


推荐