Skip to content

Commit

Permalink
CAMEL-18890: Remove camel-vertx-kafka
Browse files Browse the repository at this point in the history
  • Loading branch information
essobedo committed Jun 21, 2023
1 parent 7f38011 commit b83648a
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 6,378 deletions.
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 @@ -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

0 comments on commit b83648a

Please sign in to comment.