kafka-connect-archtype
kafka-connect-archtype copied to clipboard
Plugin 'org.apache.maven.plugins:maven-checkstyle-plugin:' not found
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 and dependecies are unable to resolve. Please needful help is needed i am attaching here the screenshots. Needful help is needed i want to pursue my career in kafka please need urgent help. Thank you

here is below my pom.xml
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.example</groupId>
<artifactId>urdu-ocr</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>urdu-ocr</name>
<description>A Kafka Connect Connector for urdu-ocr</description>
<parent>
<groupId>com.github.jcustenborder.kafka.connect</groupId>
<artifactId>kafka-connect-parent</artifactId>
<version>2.4.0</version>
</parent>
<scm>
<connection></connection>
<developerConnection></developerConnection>
<url></url>
</scm>
<issueManagement>
<system></system>
<url></url>
</issueManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<!--
Uncomment this second to generate a package to deploy to the Confluent Hub.
<plugin>
<groupId>io.confluent</groupId>
<artifactId>kafka-connect-maven-plugin</artifactId>
<configuration>
<confluentControlCenterIntegration>true</confluentControlCenterIntegration>
<documentationUrl>https://jcustenborder.github.io/kafka-connect-documentation/</documentationUrl>
<componentTypes>
<componentType>source</componentType>
<componentType>sink</componentType>
<componentType>transform</componentType>
<componentType>converter</componentType>
</componentTypes>
<tags>
<tag>urdu-ocr</tag>
</tags>
<title>Kafka Connect urdu-ocr</title>
<supportUrl>${pom.issueManagement.url}</supportUrl>
<supportSummary>Support provided through community involvement.</supportSummary>
<excludes>
<exclude>org.reflections:reflections</exclude>
</excludes>
</configuration>
</plugin>
-->
</plugins>
</build>
</project>