2

我正在开发一个多模块 Maven 项目。我们使用 dropwizard,为了执行验收测试,我们使用 maven-antrun-plugin 启动应用程序,但问题是测试完成后应用程序不会停止,然后我必须从任务管理器中终止进程。我google了很多,但没有结果。有没有办法从 Maven (对于詹金斯)做到这一点?

我尝试了停止目标,但它不起作用:

<execution>
   <id>stop-container</id>
   <phase>post-integration-test</phase>
   <goals>
      <goal>stop</goal>
   </goals>
</execution>
4

1 回答 1

0

由于我没有找到一个 maven 解决方案,我添加了一个任务来删除向导以进行关闭,然后我使用接受模块中的实现类向该任务发送一个 http 帖子。

<plugin>
  <groupId>org.codehaus.mojo</groupId>
  <artifactId>exec-maven-plugin</artifactId>
  <version>1.3.2</version>
  <executions>
    <execution>
      <id>stop-container</id>
      <phase>post-integration-test</phase>
      <goals>
        <goal>java</goal>
      </goals>
    </execution>
  </executions>
  <configuration>
    <mainClass>your.main.class</mainClass>
  </configuration>
</plugin>
于 2014-08-22T09:37:52.760 回答