编译测试类:不工作

时间:2009-09-29 10:29:38

标签: maven-2

我想将target / test-classes(即src / test / java)下的类文件打包为一个程序集。 当我运行maven命令时,我收到错误: 原因:无法创建装配:创建装配存档时出错:您必须至少设置一个文件。

我的装配说明是:

  <assembly>

<id>stress-client</id>
<formats>
    <format>jar</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<fileSets>
    <fileSet>
        <directory>${project.build.testOutputDirectory}
        </directory>
        <includes>

            list of files to be included


        </includes>


        <outputDirectory>/</outputDirectory>

    </fileSet>
</fileSets>

我发现测试类是空的。为什么测试文件没有被编译? 请帮忙

2 个答案:

答案 0 :(得分:2)

我猜测程序集正在尝试在test-compile阶段之前运行,在这种情况下,将不会包含任何类。或者您正在运行mvn assembly:assembly,在这种情况下,将不会运行默认生命周期并且不会编译测试类。您可以将程序集插件的执行绑定到稍后的阶段(例如package),以确保在构造程序集之前完成处理。

但是,您不需要使用程序集来打包测试类。这可以通过配置jar插件来打包test jar,如下所示:

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

默认情况下,测试jar将附加到项目中,并且在安装/部署时将具有分类器tests

如果必须使用程序集,请按以下步骤将其绑定到默认生命周期,以便在调用程序包时运行它。

<plugin>
  <artifactId>maven-assembly-plugin</artifactId>
  <configuration>
    <descriptors>
      <descriptor>src/main/assembly/test-assembly.xml</descriptor>
    </descriptors>
  </configuration>
  <executions>
    <execution>
      <id>make-test-assembly</id>
      <phase>package</phase> <!-- append to the packaging phase. -->
      <goals>
        <goal>single</goal>
      </goals>
    </execution>
  </executions>
</plugin>

如果这仍然不起作用,则表明您使用的是非标准包装类型,不执行测试处理的相关目标,或者您的测试源是在非标准位置定义的,因此它们不是处理。如果您仍然遇到问题,可以将构建中的输出附加到您的问题中吗?

答案 1 :(得分:0)

要检查的另一件事是pom没有包装 pom 。如果打包是pom,则不会触发测试编译。