mvn -U org.openrewrite.maven:rewrite-maven-plugin:run -Drewrite.configLocation=https://cibseven.github.io/cibseven-migration/replace-camunda-with-cibseven.yml -Drewrite.activeRecipes=org.cibseven.ReplaceCamundaWithCIBSeven
add this to your maven pom.xml:
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.openrewrite.maven</groupId>
<artifactId>rewrite-maven-plugin</artifactId>
<version>5.44.0</version>
<configuration>
<configLocation>
https://cibseven.github.io/cibseven-migration/replace-camunda-with-cibseven.yml
</configLocation>
<activeRecipes>
<recipe>org.cibseven.ReplaceCamundaWithCIBSeven</recipe>
</activeRecipes>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
run
mvn rewrite:run
You can download replace-camunda-with-cibseven.yml into root dir of your project change configuration: ${project.basedir}/replace-camunda-with-cibseven.yml do the changes you need and run it localy
After the migration you can delete the file and rewrite plugin section from your pom.xml