Details
Description
I've created a POM that works fine for integration testing, it start and stops Tomcat, and uses pingUrl to check it's started before it gets busy. However, it will not run the project using cargo:run, the war in not deployed. Removing the deployables section of the POM means that cargo:run works, but the integration test does not. Example:
http://www.alexecollins.com/?q=content/jmeter-integration-test-template-pom
Issue Links
- is related to
-
CARGO-1116
Remove the deprecated <deployer> elements under <deployer> and <configuration>
-
Hi Alex
It will actually work correctly if you remove the <deployer> element and directly put the <deployables> inside the <configuration>.
The full fix (so that start and run take the deployables from the deployer as well) is done for version 1.2.3 and 1.3.0.
Thank you