A Maven plugin for running plugin executions sequentially with flexible configuration.
The seq-maven-plugin allows you to define and execute a sequence of Maven plugin goals in a specific order. It’s perfect for scenarios where you need to orchestrate multiple plugin executions with custom configurations, ensuring they run one after another.
- Run any Maven plugin goal sequentially.
- Configure steps with plugin coordinates or shorthand identifiers.
- Merge default and custom configurations.
- Skip steps conditionally.
- Detailed logging with execution timing.
Add the plugin to your pom.xml:
<plugin>
<groupId>io.github.qudtlib</groupId>
<artifactId>seq-maven-plugin</artifactId>
<version>[choose a version]</version>
</plugin>
Add an execution block to run plugin goals sequentially:
<plugin>
<groupId>io.github.qudtlib</groupId>
<artifactId>seq-maven-plugin</artifactId>
<version>1.1-SNAPSHOT</version>
<executions>
<execution>
<id>run-sequence</id>
<phase>package</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<label>My Sequence</label>
<steps>
<step>
<pluginCoordinates>spotless:check</pluginCoordinates>
</step>
<step>
<pluginCoordinates>org.apache.maven.plugins:maven-compiler-plugin:compile</pluginCoordinates>
<configuration>
<source>17</source>
<target>17</target>
</configuration>
</step>
</steps>
</configuration>
</execution>
</executions>
</plugin>
Execute the plugin with:
mvn seq:run
Or bind it to a lifecycle phase (e.g., package) as shown above and run:
mvn package
<steps>: List of <step> elements to execute.
<pluginCoordinates>: Format as groupId:artifactId:goal[@executionId] or shorthand identifier:goal.
<configuration>: Custom configuration for the step (merged with defaults).
<skip>: Set to true to skip a step (default: false).
<label>: Optional label for log output.
Licensed under the Apache License 2.0 (LICENSE).