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

Commit

Permalink
Merge pull request #8 from blueapron/add-maven-packaging-component
Browse files Browse the repository at this point in the history
Add the Maven packaging component
  • Loading branch information
makearl authored May 22, 2018
2 parents cd2fe32 + 404dec8 commit abbafa2
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,19 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<issueManagement>
<system>github</system>
<url>https://github.com/blueapron/kafka-connect-protobuf-converter/issues</url>
</issueManagement>

<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>

<dependencies>
<dependency>
<groupId>org.apache.kafka</groupId>
Expand Down Expand Up @@ -79,6 +92,41 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>io.confluent</groupId>
<artifactId>kafka-connect-maven-plugin</artifactId>
<version>0.10.0</version>
<executions>
<execution>
<goals>
<goal>kafka-connect</goal>
</goals>
<configuration>
<title>Kafka Connect Protobuf Converter</title>
<documentationUrl>
https://github.com/blueapron/kafka-connect-protobuf-converter/blob/master/README.md
</documentationUrl>
<description>Proto3 converter for Kafka Connect.</description>
<ownerUsername>blueapron</ownerUsername>
<ownerType>organization</ownerType>
<ownerName>Blue Apron, LLC.</ownerName>
<ownerUrl>https://www.blueapron.com/</ownerUrl>
<componentTypes>
<componentType>converter</componentType>
</componentTypes>
<tags>
<tag>proto3</tag>
<tag>protocol buffers</tag>
<tag>protobuf</tag>
<tag>converter</tag>
</tags>
<supportUrl>${project.issueManagement.url}</supportUrl>
<supportSummary>Support provided through community involvement.
</supportSummary>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>

0 comments on commit abbafa2

Please sign in to comment.