Skip steps in the plan

In this sample, if skipMode is true, the XL Deploy Maven plugin computes the change plan and, before executing it, sets the 'skip' state on all the steps.

<plugins>
    ....
    <plugin>
        <groupId>com.xebialabs.deployit</groupId>
        <artifactId>maven-deployit-plugin</artifactId>
        <version>4.0.1</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>