I'm wondering if there is any technical reason behind the fact that Quarkus still relies on javax namespace instead of using the new jakarta namespace.
What confuses me more, is that many docs report the usage of Jakarta libraries (e.g. see here https://quarkiverse.github.io/quarkiverse-docs/quarkus-amazon-services/dev/amazon-dynamodb.html#_create_the_quarkusfruits_table) while the corresponding repository (https://github.com/quarkusio/quarkus-quickstarts/blob/main/amazon-dynamodb-quickstart/src/main/java/org/acme/dynamodb/FruitAsyncService.java) shows that in reality, Jakarta libs are not available.
From Jakarta EE 9 was released in 2020, so I guess this should be a change widely embraced by major frameworks like Quarkus.
I ask this, because I'm importing third party libraries which are using Jakarta namespace and this brings a lot of confusion.
Maybe there is a way to switch to the new Jakarta namespace that I couldn't see yet. Any way to achieve this?