kafka-producer
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.networknt</groupId> <artifactId>kafka-producer</artifactId> <version>2.2.1</version> </dependency>
<!-- ~ Copyright (c) 2016 Network New Technologies Inc. ~ ~ Licensed under the Apache License, Version 2.0 (the "License"); ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, software ~ distributed under the License is distributed on an "AS IS" BASIS, ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ~ See the License for the specific language governing permissions and ~ limitations under the License. --> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" 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> <parent> <groupId>com.networknt</groupId> <artifactId>light-kafka</artifactId> <version>2.2.1</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>kafka-producer</artifactId> <packaging>jar</packaging> <description>A module to push events to a Kafka topic.</description> <dependencies> <dependency> <groupId>com.networknt</groupId> <artifactId>config</artifactId> </dependency> <dependency> <groupId>com.networknt</groupId> <artifactId>utility</artifactId> </dependency> <dependency> <groupId>com.networknt</groupId> <artifactId>http-string</artifactId> </dependency> <dependency> <groupId>com.networknt</groupId> <artifactId>status</artifactId> </dependency> <dependency> <groupId>com.networknt</groupId> <artifactId>handler</artifactId> </dependency> <dependency> <groupId>com.networknt</groupId> <artifactId>audit</artifactId> </dependency> <dependency> <groupId>com.networknt</groupId> <artifactId>client</artifactId> </dependency> <dependency> <groupId>com.networknt</groupId> <artifactId>security</artifactId> </dependency> <dependency> <groupId>com.networknt</groupId> <artifactId>kafka-entity</artifactId> </dependency> <dependency> <groupId>com.networknt</groupId> <artifactId>kafka-common</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.datatype</groupId> <artifactId>jackson-datatype-jdk8</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>io.undertow</groupId> <artifactId>undertow-core</artifactId> </dependency> <dependency> <groupId>org.apache.kafka</groupId> <artifactId>kafka-clients</artifactId> </dependency> <dependency> <groupId>org.apache.avro</groupId> <artifactId>avro</artifactId> </dependency> <dependency> <groupId>tech.allegro.schema.json2avro</groupId> <artifactId>converter</artifactId> </dependency> <dependency> <groupId>io.confluent</groupId> <artifactId>kafka-avro-serializer</artifactId> </dependency> <dependency> <groupId>io.confluent</groupId> <artifactId>kafka-json-serializer</artifactId> </dependency> <dependency> <groupId>io.confluent</groupId> <artifactId>kafka-json-schema-serializer</artifactId> </dependency> <dependency> <groupId>io.confluent</groupId> <artifactId>kafka-protobuf-serializer</artifactId> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <scope>test</scope> </dependency> </dependencies> </project>