Skip to content

Commit 75d7557

Browse files
Added connector hub. Fixes #2. (#3)
1 parent 25513f0 commit 75d7557

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

pom.xml

+37
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,41 @@
6464
<version>5.0.2.RELEASE</version>
6565
</dependency>
6666
</dependencies>
67+
<build>
68+
<plugins>
69+
<plugin>
70+
<groupId>io.confluent</groupId>
71+
<artifactId>kafka-connect-maven-plugin</artifactId>
72+
<version>0.9.0</version>
73+
<executions>
74+
<execution>
75+
<goals>
76+
<goal>kafka-connect</goal>
77+
</goals>
78+
<configuration>
79+
<ownerUsername>jcustenborder</ownerUsername>
80+
<confluentControlCenterIntegration>true
81+
</confluentControlCenterIntegration>
82+
<documentationUrl>
83+
https://jcustenborder.github.io/kafka-connect-documentation/
84+
</documentationUrl>
85+
<ownerName>Jeremy Custenborder</ownerName>
86+
<dockerNamespace>jcustenborder</dockerNamespace>
87+
<dockerName>kafka-connect-docker</dockerName>
88+
<pluginTypes>
89+
<pluginType>sink</pluginType>
90+
</pluginTypes>
91+
<tags>
92+
<tag>Redis</tag>
93+
</tags>
94+
<title>Kafka Connect Redis</title>
95+
<supportUrl>${pom.issueManagement.url}</supportUrl>
96+
<supportSummary>Support provided through community involvement.
97+
</supportSummary>
98+
</configuration>
99+
</execution>
100+
</executions>
101+
</plugin>
102+
</plugins>
103+
</build>
67104
</project>

0 commit comments

Comments
 (0)