Maven tomcat6-maven-plugin:是否可以添加GeoServer .war?

时间:2014-05-27 15:04:46

标签: java maven geoserver maven-tomcat-plugin

我使用tomcat6-maven-plugin在我的Web应用程序上运行集成测试。这将启动Tomcat并在运行测试之前在其中部署我的Web应用程序。效果很好!

但我想同时运行另一个Web应用程序GeoServer,以便进行一些新的集成测试。什么是最好的方法?

是否可以将GeoServer .war添加到使用tomcat6-maven-plugin启动的Tomcat实例?怎么样?

这是我当前的tomcat6-maven-plugin配置:

<plugin>
    <groupId>org.apache.tomcat.maven</groupId>
    <artifactId>tomcat6-maven-plugin</artifactId>
    <version>2.2</version>
    <configuration>
        <path>/</path>
        <port>8087</port>
        <fork>true</fork>
        <useTestClasspath>true</useTestClasspath>
    </configuration>
    <executions>
       <execution>
           <id>run</id>
           <phase>pre-integration-test</phase>
           <goals>
               <goal>run</goal>
           </goals>
       </execution>
       <execution>
          <id>shutdown</id>
           <phase>post-integration-test</phase>
           <goals>
               <goal>shutdown</goal>
           </goals>
       </execution>
    </executions>
</plugin>

0 个答案:

没有答案