James Netherton
James Netherton
Done in https://github.com/apache/camel-quarkus/commit/2449a3928e7f2c8130ade6ca57cf6802ec456281.
The only thing that stands out from the [diff](https://github.com/apache/camel/compare/camel-3.18.0...camel-3.18.1) of 3.18.0 & 3.18.1 is this: https://github.com/apache/camel/commit/3fd9cac115b898d7e3457641a1a4db56dc12fe7a
https://issues.apache.org/jira/browse/CAMEL-18483
Maybe I took the wrong approach in creating a dedicated extension for `camel-debug`. Perhaps it would be better if we add `camel-debug` as a direct dependency to `camel-quarkus-core-deployment`. Then moved...
https://issues.apache.org/jira/browse/CAMEL-18383
If you don't want Camel Quarkus to automatically discover and bootstrap `RouteBuilder` implementations, then you can add some configuration to `application.properties`: ``` quarkus.camel.routes-discovery.enabled=false ``` It's not entirely clear what you're...
> is there additional work to do to replace that functionality Yes, you become responsible for ensuring those routes are added to the `CamelContext`. The project provides some `BuildItem`s for...
> Is it unexpected for a user of camel-quarkus to produce synthetic RouteBuilder beans for Camel to discover later It's not a scenario that has ever been considered TBH. >...
As a workaround try: `--initialize-at-run-time=oracle.jdbc.driver.OracleDriver`.
> @jamesnetherton @lburgazzoli Is deleting the reflective classes mandatory for this PR? I think it's ok to have the reflective config initially. But we should try to remove it in...