This is an automated email from the ASF dual-hosted git repository.

jamesnetherton pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/main by this push:
     new bf2b881673f Use jakarta namespace in camel-jbang Quarkus injection docs
bf2b881673f is described below

commit bf2b881673f8f74a0f3d26930ddd5628330ea3e3
Author: James Netherton <jamesnether...@gmail.com>
AuthorDate: Wed Jun 11 14:13:37 2025 +0100

    Use jakarta namespace in camel-jbang Quarkus injection docs
---
 docs/user-manual/modules/ROOT/pages/camel-jbang.adoc | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/docs/user-manual/modules/ROOT/pages/camel-jbang.adoc 
b/docs/user-manual/modules/ROOT/pages/camel-jbang.adoc
index ba40d5a4225..d48c3219085 100644
--- a/docs/user-manual/modules/ROOT/pages/camel-jbang.adoc
+++ b/docs/user-manual/modules/ROOT/pages/camel-jbang.adoc
@@ -2300,10 +2300,10 @@ You can use the following Spring Boot annotations:
 
 You can use the following Quarkus annotations:
 
-- `@javax.enterprise.context.ApplicationScoped` or `@javax.inject.Singleton` 
on class level to create an instance of the class and register in the 
xref:registry.adoc[Registry]. `@javax.inject.Named` can be used to specify the 
bean id.
-- `@javax.inject.Inject` to dependency inject a bean on a class field. 
`@javax.inject.Named` can be used to specify the bean id.
+- `@jakarta.enterprise.context.ApplicationScoped` or 
`@jakarta.inject.Singleton` on class level to create an instance of the class 
and register in the xref:registry.adoc[Registry]. `@jakarta.inject.Named` can 
be used to specify the bean id.
+- `@jakarta.inject.Inject` to dependency inject a bean on a class field. 
`@jakarta.inject.Named` can be used to specify the bean id.
 - `@org.eclipse.microprofile.config.inject.ConfigProperty` to inject a 
xref:using-propertyplaceholder.adoc[property placeholder]. Such as a property 
defined in `application.properties`.
-- `@javax.enterprise.inject.Produces` on a method to create a bean by invoking 
the method. `@javax.inject.Named` can be used to specify the bean id.
+- `@jakarta.enterprise.inject.Produces` on a method to create a bean by 
invoking the method. `@jakarta.inject.Named` can be used to specify the bean id.
 
 ==== Using beans in Camel XML DSL
 

Reply via email to