kafka-connect-protobuf-converter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.sclasen</groupId> <artifactId>kafka-connect-protobuf-converter</artifactId> <version>2.0.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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>com.sclasen</groupId> <artifactId>kafka-connect-protobuf-converter</artifactId> <packaging>jar</packaging> <version>2.0.1</version> <name>blueapron kafka-connect-protobuf-converter</name> <description>a kafka-connect-protobuf-converter repackaged for maven central instead of confluent</description> <developers> <developer> <name>blueapron</name> </developer> </developers> <url>https://github.com/blueapron/kafka-connect-protobuf-converter</url> <scm><url>https://github.com/blueapron/kafka-connect-protobuf-converter</url></scm> <properties> <protobuf.version>3.5.1</protobuf.version> <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> <artifactId>connect-api</artifactId> <version>1.1.1</version> </dependency> <dependency> <groupId>com.google.protobuf</groupId> <artifactId>protobuf-java</artifactId> <version>${protobuf.version}</version> </dependency> <!-- https://mvnrepository.com/artifact/com.google.api.grpc/googleapis-common-protos --> <dependency> <groupId>com.google.api.grpc</groupId> <artifactId>googleapis-common-protos</artifactId> <version>0.0.3</version> </dependency> <dependency> <groupId>com.google.protobuf</groupId> <artifactId>protobuf-java-util</artifactId> <version>${protobuf.version}</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> <dependency> <groupId>uk.co.jemos.podam</groupId> <artifactId>podam</artifactId> <version>6.0.2.RELEASE</version> <scope>test</scope> </dependency> </dependencies> <repositories> <repository> <id>jitpack.io</id> <url>https://jitpack.io</url> </repository> </repositories> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.3</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>3.1.0</version> <configuration> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> </configuration> <executions> <execution> <id>make-assembly</id> <phase>package</phase> <goals> <goal>single</goal> </goals> </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> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.3</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.7</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>false</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> </project>