Test Deployment Configuration

If testMode equals True, the Deployit Maven plugin computes the change plan, displays it and cancels the associate tasks.

<plugins>
    ....
    <plugin>
        <groupId>com.xebialabs.deployit</groupId>
        <artifactId>maven-deployit-plugin</artifactId>
        <version>3.9.2</version>

        <executions>
            <execution>
                <id>deploy-id</id>
                <phase>pre-integration-test</phase>
                <goals>
                    <goal>deploy</goal>
                </goals>
            </execution>
        </executions>

        <configuration>
            <!-- test mode = true -->
            <testMode>true</testMode>

            <environmentId>Environments/MyProjectEnvironment</environmentId>
    </plugin>
    ...
</plugins>