kroxylicious-simple-transform
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.kroxylicious</groupId>
<artifactId>kroxylicious-simple-transform</artifactId>
<version>0.21.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright Kroxylicious Authors.
Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0
-->
<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>io.kroxylicious</groupId>
<artifactId>kroxylicious-filter-parent</artifactId>
<version>0.21.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>kroxylicious-simple-transform</artifactId>
<name>Simple filters</name>
<description>Several simple filters that exist for test purposes.</description>
<dependencies>
<!-- project dependencies - runtime and compile -->
<dependency>
<groupId>io.kroxylicious</groupId>
<artifactId>kroxylicious-api</artifactId>
</dependency>
<dependency>
<groupId>io.kroxylicious</groupId>
<artifactId>kroxylicious-kafka-message-tools</artifactId>
</dependency>
<!-- third party dependencies - runtime and compile -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
</dependency>
<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka-clients</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<!-- project dependencies - test -->
<dependency>
<groupId>io.kroxylicious</groupId>
<artifactId>kroxylicious-filter-test-support</artifactId>
<scope>test</scope>
</dependency>
<!-- third party dependencies - test -->
<dependency>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-annotations</artifactId>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.kroxylicious</groupId>
<artifactId>kroxylicious-runtime</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
</plugins>
</build>
</project>