kafka
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>ch.squaredesk.nova</groupId>
<artifactId>kafka</artifactId>
<version>7.0.1</version>
</dependency><!--
~ Copyright (c) Squaredesk GmbH and Oliver Dotzauer.
~
~ This program is distributed under the squaredesk open source license. See the LICENSE file
~ distributed with this work for additional information regarding copyright ownership. You may also
~ obtain a copy of the license at
~
~ https://squaredesk.ch/license/oss/LICENSE
-->
<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>
<parent>
<groupId>ch.squaredesk.nova</groupId>
<artifactId>parentpom</artifactId>
<version>7.0.1</version>
<relativePath>../parentpom</relativePath>
</parent>
<artifactId>kafka</artifactId>
<version>7.0.1</version>
<dependencies>
<dependency>
<groupId>ch.squaredesk.nova</groupId>
<artifactId>comm</artifactId>
<version>7.0.1</version>
</dependency>
<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka-clients</artifactId>
<version>1.1.0</version>
</dependency>
<dependency>
<groupId>com.github.charithe</groupId>
<artifactId>kafka-junit</artifactId>
<version>4.1.1</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>