apupier commented on code in PR #7993: URL: https://github.com/apache/camel-quarkus/pull/7993#discussion_r2548919290
########## docs/modules/ROOT/pages/migration-guide/camel-spring-boot-to-camel-quarkus.adoc: ########## @@ -0,0 +1,105 @@ += Camel Spring Boot to Camel Quarkus Migration Guide + +This guide helps to migrate from Camel on Spring Boot to Camel on Quarkus. + +== Spring Boot to Quarkus non-specific to Camel migration + +This part should be relatively minimal for Camel applications. Most of it is automated by an https://docs.openrewrite.org/recipes/quarkus/spring/springboottoquarkus[OpenRewrite recipe]. + +The command to apply it is + +[source,shell] +--- +mvn -U org.openrewrite.maven:rewrite-maven-plugin:run -Drewrite.recipeArtifactCoordinates=org.openrewrite.recipe:rewrite-spring-to-quarkus:RELEASE -Drewrite.activeRecipes=org.openrewrite.quarkus.spring.SpringBootToQuarkus -Drewrite.exportDatatables=true +--- + +== Maven dependencies + +=== Bom dependencies + +The `org.apache.camel.springboot:camel-spring-boot-bom` must be replaced by `org.apache.camel.quarkus:camel-quarkus-bom`. Review Comment: Note that the naming with quarkus-camel-bom is with the red hat productized version: https://maven.repository.redhat.com/ga/com/redhat/quarkus/platform/quarkus-camel-bom/ com.redhat.quarkus.platform:quarkus-camel-bom -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
