Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CAMEL-18890: Remove camel-vertx-kafka #10463

Merged
merged 1 commit into from Jun 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion Jenkinsfile.s390x
Expand Up @@ -82,7 +82,7 @@ pipeline {
steps {
timeout(unit: 'HOURS', time: 7) {
// Skip the test case execution of modules which are either not supported on s390x or vendor images are not available for s390x.
sh "./mvnw $MAVEN_PARAMS $MAVEN_TEST_PARAMS $MAVEN_TEST_LIMIT_PARAMS -Dmaven.test.failure.ignore=true -Dcheckstyle.skip=true verify -pl '!docs,!components/camel-kudu,!components/camel-djl,!components/camel-consul,!components/camel-pulsar,!components/camel-xmpp,!components/camel-google/camel-google-pubsub,!components/camel-hdfs,!components/camel-vertx/camel-vertx-kafka/camel-vertx-kafka-component,!components/camel-zookeeper,!components/camel-zookeeper-master'"
sh "./mvnw $MAVEN_PARAMS $MAVEN_TEST_PARAMS $MAVEN_TEST_LIMIT_PARAMS -Dmaven.test.failure.ignore=true -Dcheckstyle.skip=true verify -pl '!docs,!components/camel-kudu,!components/camel-djl,!components/camel-consul,!components/camel-pulsar,!components/camel-xmpp,!components/camel-google/camel-google-pubsub,!components/camel-hdfs,!components/camel-zookeeper,!components/camel-zookeeper-master'"
}
}
post {
Expand Down
5 changes: 0 additions & 5 deletions bom/camel-bom/pom.xml
Expand Up @@ -46,11 +46,6 @@
<artifactId>camel-servicenow-maven-plugin</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.camel.maven</groupId>
<artifactId>camel-vertx-kafka-maven-plugin</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-activemq</artifactId>
Expand Down
Expand Up @@ -343,7 +343,6 @@ public interface EndpointBuilderFactory
org.apache.camel.builder.endpoint.dsl.VelocityEndpointBuilderFactory.VelocityBuilders,
org.apache.camel.builder.endpoint.dsl.VertxEndpointBuilderFactory.VertxBuilders,
org.apache.camel.builder.endpoint.dsl.VertxHttpEndpointBuilderFactory.VertxHttpBuilders,
org.apache.camel.builder.endpoint.dsl.VertxKafkaEndpointBuilderFactory.VertxKafkaBuilders,
org.apache.camel.builder.endpoint.dsl.VertxWebsocketEndpointBuilderFactory.VertxWebsocketBuilders,
org.apache.camel.builder.endpoint.dsl.VmEndpointBuilderFactory.VmBuilders,
org.apache.camel.builder.endpoint.dsl.WeatherEndpointBuilderFactory.WeatherBuilders,
Expand Down
Expand Up @@ -340,7 +340,6 @@ public interface EndpointBuilders
org.apache.camel.builder.endpoint.dsl.VelocityEndpointBuilderFactory,
org.apache.camel.builder.endpoint.dsl.VertxEndpointBuilderFactory,
org.apache.camel.builder.endpoint.dsl.VertxHttpEndpointBuilderFactory,
org.apache.camel.builder.endpoint.dsl.VertxKafkaEndpointBuilderFactory,
org.apache.camel.builder.endpoint.dsl.VertxWebsocketEndpointBuilderFactory,
org.apache.camel.builder.endpoint.dsl.VmEndpointBuilderFactory,
org.apache.camel.builder.endpoint.dsl.WeatherEndpointBuilderFactory,
Expand Down
Expand Up @@ -15227,55 +15227,6 @@ public static org.apache.camel.builder.endpoint.dsl.VertxHttpEndpointBuilderFact
String path) {
return org.apache.camel.builder.endpoint.dsl.VertxHttpEndpointBuilderFactory.endpointBuilder(componentName, path);
}
/**
* Vert.x Kafka (camel-vertx-kafka)
* Sent and receive messages to/from an Apache Kafka broker using vert.x
* Kafka client
*
* Category: messaging
* Since: 3.7
* Maven coordinates: org.apache.camel:camel-vertx-kafka
*
* Syntax: <code>vertx-kafka:topic</code>
*
* Path parameter: topic (required)
* Name of the topic to use. On the consumer you can use comma to separate
* multiple topics. A producer can only send a message to a single topic.
*
* @param path topic
* @return the dsl builder
*/
@Deprecated
public static org.apache.camel.builder.endpoint.dsl.VertxKafkaEndpointBuilderFactory.VertxKafkaEndpointBuilder vertxKafka(
String path) {
return org.apache.camel.builder.endpoint.dsl.VertxKafkaEndpointBuilderFactory.endpointBuilder("vertx-kafka", path);
}
/**
* Vert.x Kafka (camel-vertx-kafka)
* Sent and receive messages to/from an Apache Kafka broker using vert.x
* Kafka client
*
* Category: messaging
* Since: 3.7
* Maven coordinates: org.apache.camel:camel-vertx-kafka
*
* Syntax: <code>vertx-kafka:topic</code>
*
* Path parameter: topic (required)
* Name of the topic to use. On the consumer you can use comma to separate
* multiple topics. A producer can only send a message to a single topic.
*
* @param componentName to use a custom component name for the endpoint
* instead of the default name
* @param path topic
* @return the dsl builder
*/
@Deprecated
public static org.apache.camel.builder.endpoint.dsl.VertxKafkaEndpointBuilderFactory.VertxKafkaEndpointBuilder vertxKafka(
String componentName,
String path) {
return org.apache.camel.builder.endpoint.dsl.VertxKafkaEndpointBuilderFactory.endpointBuilder(componentName, path);
}
/**
* Vert.x WebSocket (camel-vertx-websocket)
* Expose WebSocket endpoints and connect to remote WebSocket servers using
Expand Down