Skip to content
This repository was archived by the owner on Jun 30, 2023. It is now read-only.

Commit abbafa2

Browse files
authored
Merge pull request #8 from blueapron/add-maven-packaging-component
Add the Maven packaging component
2 parents cd2fe32 + 404dec8 commit abbafa2

File tree

1 file changed

+48
-0
lines changed

1 file changed

+48
-0
lines changed

pom.xml

+48
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,19 @@
1414
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1515
</properties>
1616

17+
<issueManagement>
18+
<system>github</system>
19+
<url>https://github.com/blueapron/kafka-connect-protobuf-converter/issues</url>
20+
</issueManagement>
21+
22+
<licenses>
23+
<license>
24+
<name>MIT License</name>
25+
<url>http://www.opensource.org/licenses/mit-license.php</url>
26+
<distribution>repo</distribution>
27+
</license>
28+
</licenses>
29+
1730
<dependencies>
1831
<dependency>
1932
<groupId>org.apache.kafka</groupId>
@@ -79,6 +92,41 @@
7992
</execution>
8093
</executions>
8194
</plugin>
95+
<plugin>
96+
<groupId>io.confluent</groupId>
97+
<artifactId>kafka-connect-maven-plugin</artifactId>
98+
<version>0.10.0</version>
99+
<executions>
100+
<execution>
101+
<goals>
102+
<goal>kafka-connect</goal>
103+
</goals>
104+
<configuration>
105+
<title>Kafka Connect Protobuf Converter</title>
106+
<documentationUrl>
107+
https://github.com/blueapron/kafka-connect-protobuf-converter/blob/master/README.md
108+
</documentationUrl>
109+
<description>Proto3 converter for Kafka Connect.</description>
110+
<ownerUsername>blueapron</ownerUsername>
111+
<ownerType>organization</ownerType>
112+
<ownerName>Blue Apron, LLC.</ownerName>
113+
<ownerUrl>https://www.blueapron.com/</ownerUrl>
114+
<componentTypes>
115+
<componentType>converter</componentType>
116+
</componentTypes>
117+
<tags>
118+
<tag>proto3</tag>
119+
<tag>protocol buffers</tag>
120+
<tag>protobuf</tag>
121+
<tag>converter</tag>
122+
</tags>
123+
<supportUrl>${project.issueManagement.url}</supportUrl>
124+
<supportSummary>Support provided through community involvement.
125+
</supportSummary>
126+
</configuration>
127+
</execution>
128+
</executions>
129+
</plugin>
82130
</plugins>
83131
</build>
84132
</project>

0 commit comments

Comments
 (0)