Skip to content

cibseven/cibseven-migration

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cibseven-migration

Command line

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

Pom File

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

Making changes

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

Clean up

After the migration you can delete the file and rewrite plugin section from your pom.xml