Download kafka-unit-0.4.jar file

Introduction

You can download kafka-unit-0.4.jar in this page.

License

The Apache License, Version 2.0

Type List

kafka-unit-0.4.jar file has the following types.

META-INF/MANIFEST.MF
info.batey.kafka.unit.KafkaUnit.class
info.batey.kafka.unit.KafkaUnitRule.class
info.batey.kafka.unit.Zookeeper.class

Pom

kafka-unit-0.4.pom file content.

<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <groupId>info.batey.kafka</groupId>
  <artifactId>kafka-unit</artifactId>
  <version>0.4</version>
  <name>Kafka Unit</name>
  <description>Unit testing for Kafka</description>
  <url>https://github.com/chbatey/kafka-unit</url>
  <licenses>
    <license>
      <name>The Apache License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>chbatey</id>
      <name>Christopher Batey</name>
      <email>christopher.batey@gmail.com</email>
    </developer>
  </developers>
  <scm>
    <connection>scm:git@github.com:chbatey/kafka-unit.git</connection>
    <developerConnection>scm:git@github.com:chbatey/kafka-unit.git</developerConnection>
    <url>https://github.com/chbatey/kafka-unit</url>
  </scm>
  <dependencies>
    <dependency>
      <groupId>org.apache.kafka</groupId>
      <artifactId>kafka_2.11</artifactId>
      <version>0.9.0.1</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.11</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.apache.zookeeper</groupId>
      <artifactId>zookeeper</artifactId>
      <version>3.4.6</version>
      <scope>compile</scope>
    </dependency>
  </dependencies>
</project>

POM Entry

<dependency>
   <groupId>info.batey.kafka</groupId>
   <artifactId>kafka-unit</artifactId>
   <version>0.4</version>
</dependency>

Download

If you think the following kafka-unit-0.4.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download kafka-unit-0.4.jar file




PreviousNext

Related