This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit 3378a931e4576619e16bd8bf118599f1e419ccdf Author: Claus Ibsen <[email protected]> AuthorDate: Tue Dec 14 15:35:51 2021 +0100 camel-platform-http-vertx no longer experimental --- .../camel/component/platform/http/vertx/VertxPlatformHttpEngine.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/components/camel-platform-http-vertx/src/main/java/org/apache/camel/component/platform/http/vertx/VertxPlatformHttpEngine.java b/components/camel-platform-http-vertx/src/main/java/org/apache/camel/component/platform/http/vertx/VertxPlatformHttpEngine.java index 43a63c1..17c7246 100644 --- a/components/camel-platform-http-vertx/src/main/java/org/apache/camel/component/platform/http/vertx/VertxPlatformHttpEngine.java +++ b/components/camel-platform-http-vertx/src/main/java/org/apache/camel/component/platform/http/vertx/VertxPlatformHttpEngine.java @@ -23,7 +23,6 @@ import java.util.List; import io.vertx.core.Handler; import io.vertx.ext.web.RoutingContext; import org.apache.camel.Consumer; -import org.apache.camel.Experimental; import org.apache.camel.Processor; import org.apache.camel.component.platform.http.PlatformHttpConstants; import org.apache.camel.component.platform.http.PlatformHttpEndpoint; @@ -34,7 +33,6 @@ import org.apache.camel.support.service.ServiceSupport; /** * Implementation of the {@link PlatformHttpEngine} based on Vert.x Web. */ -@Experimental @JdkService(PlatformHttpConstants.PLATFORM_HTTP_ENGINE_FACTORY) public class VertxPlatformHttpEngine extends ServiceSupport implements PlatformHttpEngine { private List<Handler<RoutingContext>> handlers;
