kafka-connect-archtype icon indicating copy to clipboard operation
kafka-connect-archtype copied to clipboard

Maven quick start for building Kafka Connect connectors.

Results 4 kafka-connect-archtype issues
Sort by recently updated
recently updated
newest added

I am using intellij and when i add the maven archtype as in the tutorial from udemy i have followed the same step but i am getting the following errors...

docker-compose fails due to broken indentation - more broadly I'm wondering if this should include a connect cluster?

When trying to run the archetype mvn archetype:generate -DarchetypeGroupId=io.confluent.maven -DarchetypeArtifactId=kafka-connect-quickstart -DarchetypeVersion=0.10.0.0 -Dpackage=io.confluent.examples.kafka.connect.twitter -DgroupId=io.confluent.examples -DartifactId=kafka-connect-twitter -DpackageName=io.confluent.examples.kafka.connect.twitter -Dversion=1.0-SNAPSHOT (in an empty directory) to generate a skeleton I get the following errors -...

To generate a skeleton connector implementation by Maven archtype, groupId shoul be like this: -DarchetypeGroupId=io.confluent.maven. Instead of -DarchetypeGroupId=io.confluent.maven.archetypes The code is: mvn archetype:generate -DarchetypeGroupId=io.confluent.maven -DarchetypeArtifactId=kafka-connect-quickstart \ -DarchetypeVersion=0.10.0.0 \ -Dpackage=io.confluent.examples.kafka.connect.twitter \...