I'm trying to use openrewrite to refactor one of my projects which is a hierachical maven project (super POM with submodules). Basically I want to replace 1 package name with a new package name (fe. org.myproject to com.myproject) and refactor also the artifact names.
I can already replace the package name if I use it inside a specific module but when I try to add the maven rewrite plugin on the super pom it doesn't get executed (it even doesn't find the plugin).
Does anyone have a sample how to use openrewrite on a super POM file ?