-
Notifications
You must be signed in to change notification settings - Fork 101
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
What version of OpenRewrite are you using?
I am using
- OpenRewrite v2.31.0
How are you running OpenRewrite?
I am using the Maven command line to invoke the Javax to jakarta recipe, and my project is a multi-module project.
mvn -U org.openrewrite.maven:rewrite-maven-plugin:run -Drewrite.recipeArtifactCoordinates=org.openrewrite.recipe:rewrite-migrate-java:RELEASE -Drewrite.activeRecipes=org.openrewrite.java.migrate.jakarta.JacksonJavaxToJakarta -Drewrite.exportDatatables=true
What is the smallest, simplest way to reproduce the problem?
import com.fasterxml.jackson.jaxrs.json.JacksonJaxbJsonProvider;
public class A extends JacksonJaxbJsonProvider {}
What did you expect to see?
import com.fasterxml.jackson.jakarta.rs.json.JacksonXmlBindJsonProvider;
public class A extends JacksonXmlBindJsonProvider {}
What did you see instead?
No change to the file:
import com.fasterxml.jackson.jaxrs.json.JacksonJaxbJsonProvider;
public class A extends JacksonJaxbJsonProvider {}
What is the full stack trace of any errors you encountered?
no errors
Are you interested in contributing a fix to OpenRewrite?
no
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working
Type
Projects
Status
Done