In my init.gradle file, I have defined 2 active recipes.
rewrite {
activeRecipe("org.openrewrite.java.testing.mockito.Mockito1to4Migration", "com.myorg.openrewrite.Mockito1to4Migration")
}
When running gradle -I init.gradle rewriteRun
, it seems that the recipe com.myorg.openrewrite.Mockito1to4Migration
is run first regardless of the position in the activeRecipe list.
Is the sequence random? How can I force that com.myorg.openrewrite.Mockito1to4Migration
is run first.