Apply the new formatting rules
diff --git a/extensions/attachments/deployment/src/main/java/org/apache/camel/quarkus/component/attachments/deployment/AttachmentsProcessor.java b/extensions/attachments/deployment/src/main/java/org/apache/camel/quarkus/component/attachments/deployment/AttachmentsProcessor.java
index 6b60066..cb736ed 100644
--- a/extensions/attachments/deployment/src/main/java/org/apache/camel/quarkus/component/attachments/deployment/AttachmentsProcessor.java
+++ b/extensions/attachments/deployment/src/main/java/org/apache/camel/quarkus/component/attachments/deployment/AttachmentsProcessor.java
@@ -37,8 +37,8 @@
      * Produces the "real" {@link UploadAttacher} thus overriding the default no-op one produced by
      * {@code camel-quarkus-core-deployment}.
      *
-     * @param recorder the {@link AttachmentsRecorder}
-     * @return a new {@link UploadAttacherBuildItem}
+     * @param  recorder the {@link AttachmentsRecorder}
+     * @return          a new {@link UploadAttacherBuildItem}
      */
     @Record(ExecutionTime.STATIC_INIT)
     @BuildStep
diff --git a/extensions/core/deployment/src/main/java/org/apache/camel/quarkus/core/deployment/BuildProcessor.java b/extensions/core/deployment/src/main/java/org/apache/camel/quarkus/core/deployment/BuildProcessor.java
index a275686..594ec28 100644
--- a/extensions/core/deployment/src/main/java/org/apache/camel/quarkus/core/deployment/BuildProcessor.java
+++ b/extensions/core/deployment/src/main/java/org/apache/camel/quarkus/core/deployment/BuildProcessor.java
@@ -426,18 +426,18 @@
         /**
          * This method is responsible to start camel-main ar runtime.
          *
-         * @param recorder the recorder.
-         * @param main a reference to a {@link CamelMain}.
-         * @param registry a reference to a {@link org.apache.camel.spi.Registry}; note that this parameter is here as
-         *            placeholder to
-         *            ensure the {@link org.apache.camel.spi.Registry} is fully configured before starting camel-main.
-         * @param executor the {@link org.apache.camel.spi.ReactiveExecutor} to be configured on camel-main, this
-         *            happens during {@link ExecutionTime#RUNTIME_INIT} because the executor may need to start
-         *            threads and so on.
-         * @param shutdown a reference to a {@link io.quarkus.runtime.ShutdownContext} used to register shutdown logic.
+         * @param recorder  the recorder.
+         * @param main      a reference to a {@link CamelMain}.
+         * @param registry  a reference to a {@link org.apache.camel.spi.Registry}; note that this parameter is here as
+         *                  placeholder to
+         *                  ensure the {@link org.apache.camel.spi.Registry} is fully configured before starting camel-main.
+         * @param executor  the {@link org.apache.camel.spi.ReactiveExecutor} to be configured on camel-main, this
+         *                  happens during {@link ExecutionTime#RUNTIME_INIT} because the executor may need to start
+         *                  threads and so on.
+         * @param shutdown  a reference to a {@link io.quarkus.runtime.ShutdownContext} used to register shutdown logic.
          * @param startList a placeholder to ensure camel-main start after the ArC container is fully initialized. This
-         *            is required as under the hoods the camel registry may look-up beans form the
-         *            container thus we need it to be fully initialized to avoid unexpected behaviors.
+         *                  is required as under the hoods the camel registry may look-up beans form the
+         *                  container thus we need it to be fully initialized to avoid unexpected behaviors.
          */
         @Record(ExecutionTime.RUNTIME_INIT)
         @BuildStep(onlyIf = Flags.MainEnabled.class)
@@ -465,8 +465,8 @@
          * Note that this {@link BuildStep} is effective only if {@code camel-quarkus-attachments} extension is not in
          * the class path.
          *
-         * @param recorder the {@link CoreAttachmentsRecorder}
-         * @return a new {@link UploadAttacherBuildItem}
+         * @param  recorder the {@link CoreAttachmentsRecorder}
+         * @return          a new {@link UploadAttacherBuildItem}
          */
         @Overridable
         @Record(value = ExecutionTime.STATIC_INIT, optional = true)
diff --git a/extensions/core/runtime/src/main/java/org/apache/camel/quarkus/core/UploadAttacher.java b/extensions/core/runtime/src/main/java/org/apache/camel/quarkus/core/UploadAttacher.java
index 98c2663..89a930a 100644
--- a/extensions/core/runtime/src/main/java/org/apache/camel/quarkus/core/UploadAttacher.java
+++ b/extensions/core/runtime/src/main/java/org/apache/camel/quarkus/core/UploadAttacher.java
@@ -30,8 +30,8 @@
      * {@code message}
      *
      * @param localFile the uploaded file stored locally
-     * @param fileName the name of the upload as sent by the client
-     * @param message the {@link Message} to attach the upload to
+     * @param fileName  the name of the upload as sent by the client
+     * @param message   the {@link Message} to attach the upload to
      */
     void attachUpload(File localFile, String fileName, Message message);
 
diff --git a/extensions/servlet/runtime/src/main/java/org/apache/camel/quarkus/servlet/runtime/CamelServletConfig.java b/extensions/servlet/runtime/src/main/java/org/apache/camel/quarkus/servlet/runtime/CamelServletConfig.java
index 6f58b6d..20a99b3 100644
--- a/extensions/servlet/runtime/src/main/java/org/apache/camel/quarkus/servlet/runtime/CamelServletConfig.java
+++ b/extensions/servlet/runtime/src/main/java/org/apache/camel/quarkus/servlet/runtime/CamelServletConfig.java
@@ -86,9 +86,9 @@
          * sets the precedence: the {@link #servletName} gets effective only if it has a non-default value; otherwise
          * the {@code key} is returned as the servlet name.
          *
-         * @param key the key used in
-         *            {@link org.apache.camel.quarkus.servlet.runtime.CamelServletConfig.ServletsConfig#namedServlets}
-         * @return the effective servlet name to use
+         * @param  key the key used in
+         *             {@link org.apache.camel.quarkus.servlet.runtime.CamelServletConfig.ServletsConfig#namedServlets}
+         * @return     the effective servlet name to use
          */
         public String getEffectiveServletName(final String key) {
             return DEFAULT_SERVLET_NAME.equals(servletName) ? key : servletName;
diff --git a/extensions/xslt/runtime/src/main/java/org/apache/camel/quarkus/component/xslt/RuntimeUriResolver.java b/extensions/xslt/runtime/src/main/java/org/apache/camel/quarkus/component/xslt/RuntimeUriResolver.java
index 9932e06..bcc7cc3 100644
--- a/extensions/xslt/runtime/src/main/java/org/apache/camel/quarkus/component/xslt/RuntimeUriResolver.java
+++ b/extensions/xslt/runtime/src/main/java/org/apache/camel/quarkus/component/xslt/RuntimeUriResolver.java
@@ -56,8 +56,8 @@
     }
 
     /**
-     * @param uri the URI whose translet is seeked
-     * @return the unqualified translet name associated with the given {@code uri}
+     * @param  uri the URI whose translet is seeked
+     * @return     the unqualified translet name associated with the given {@code uri}
      */
     public String getTransletClassName(String uri) {
         final String transletClassName = uriToTransletName.get(uri);
diff --git a/integration-tests/support/test-support/src/main/java/org/apache/camel/quarkus/test/AvailablePortFinder.java b/integration-tests/support/test-support/src/main/java/org/apache/camel/quarkus/test/AvailablePortFinder.java
index 6400871..6ba93b9 100644
--- a/integration-tests/support/test-support/src/main/java/org/apache/camel/quarkus/test/AvailablePortFinder.java
+++ b/integration-tests/support/test-support/src/main/java/org/apache/camel/quarkus/test/AvailablePortFinder.java
@@ -44,7 +44,7 @@
      * Gets the next available port.
      *
      * @throws IllegalStateException if there are no ports available
-     * @return the available port
+     * @return                       the available port
      */
     public static int getNextAvailable() {
         try (ServerSocket ss = new ServerSocket()) {
diff --git a/integration-tests/support/test-support/src/main/java/org/apache/camel/quarkus/test/EnabledIfProperty.java b/integration-tests/support/test-support/src/main/java/org/apache/camel/quarkus/test/EnabledIfProperty.java
index f874c05..91cc677 100644
--- a/integration-tests/support/test-support/src/main/java/org/apache/camel/quarkus/test/EnabledIfProperty.java
+++ b/integration-tests/support/test-support/src/main/java/org/apache/camel/quarkus/test/EnabledIfProperty.java
@@ -39,7 +39,7 @@
      * The name of the property to retrieve.
      *
      * @return the property name; never <em>blank</em>
-     * @see org.eclipse.microprofile.config.Config#getValue(String, Class)
+     * @see    org.eclipse.microprofile.config.Config#getValue(String, Class)
      */
     String named();
 
@@ -48,8 +48,8 @@
      * value of the {@link #named} property.
      *
      * @return the regular expression; never <em>blank</em>
-     * @see String#matches(String)
-     * @see java.util.regex.Pattern
+     * @see    String#matches(String)
+     * @see    java.util.regex.Pattern
      */
     String matches();
 
diff --git a/tooling/package-maven-plugin/src/main/java/org/apache/camel/quarkus/maven/PrepareCatalogQuarkusMojo.java b/tooling/package-maven-plugin/src/main/java/org/apache/camel/quarkus/maven/PrepareCatalogQuarkusMojo.java
index 9dbdaea..0ca8459 100644
--- a/tooling/package-maven-plugin/src/main/java/org/apache/camel/quarkus/maven/PrepareCatalogQuarkusMojo.java
+++ b/tooling/package-maven-plugin/src/main/java/org/apache/camel/quarkus/maven/PrepareCatalogQuarkusMojo.java
@@ -126,7 +126,7 @@
      * Execute goal.
      *
      * @throws MojoExecutionException execution of the main class or one of the
-     *             threads it generated failed.
+     *         threads it generated failed.
      * @throws MojoFailureException something bad happened...
      */
     @Override
diff --git a/tooling/package-maven-plugin/src/main/java/org/apache/camel/quarkus/maven/UpdateDocExtensionsListMojo.java b/tooling/package-maven-plugin/src/main/java/org/apache/camel/quarkus/maven/UpdateDocExtensionsListMojo.java
index a5285e8..bb392f4 100644
--- a/tooling/package-maven-plugin/src/main/java/org/apache/camel/quarkus/maven/UpdateDocExtensionsListMojo.java
+++ b/tooling/package-maven-plugin/src/main/java/org/apache/camel/quarkus/maven/UpdateDocExtensionsListMojo.java
@@ -121,7 +121,7 @@
      * Execute goal.
      *
      * @throws MojoExecutionException execution of the main class or one of the
-     *             threads it generated failed.
+     *         threads it generated failed.
      * @throws MojoFailureException something bad happened...
      */
     @Override