2
我正在使用Cargo進行與Maven的集成測試。我發現在預集成here中從.m2回購部署另一場戰爭的例子。有人可以指導我如何部署當前的項目和使用貨物的另一場戰爭?部署當前項目和使用Cargo的另一個WAR
我正在使用Cargo進行與Maven的集成測試。我發現在預集成here中從.m2回購部署另一場戰爭的例子。有人可以指導我如何部署當前的項目和使用貨物的另一場戰爭?部署當前項目和使用Cargo的另一個WAR
查看Cargo Plugin配置的deployables標籤。
此配置應該部署您當前的項目和AnotherWAR項目。
<profiles>
<profile>
<id>integration-test</id>
<dependencies>
<dependency>
<groupId>com.me</groupId>
<artifactId>AnotherWAR</artifactId>
<version>1.2</version>
<type>war</type>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.cargo</groupId>
<artifactId>cargo-maven2-plugin</artifactId>
<version>1.2.4</version>
<configuration>
<deployables>
<deployable>
<groupId>com.me</groupId>
<artifactId>AnotherWAR</artifactId>
</deployable>
</deployables>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
然後就叫貨:與「集成測試」輪廓積極
部署