Test Deployment Configuration

If skipMode equals True, the Deployit Maven plugin computes the change plan and before executing it set the 'skip' state on all the steps.

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

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

        <configuration>
            <!-- skip mode = true -->
            <skipMode>true</skipMode>

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