schema-registry-mock
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.bakdata.fluent-kafka-streams-tests</groupId> <artifactId>schema-registry-mock</artifactId> <version>2.16.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://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"> <!-- This module was also published with a richer model, Gradle metadata, --> <!-- which should be used instead. Do not delete the following line which --> <!-- is to indicate to Gradle or any Gradle module metadata file consumer --> <!-- that they should prefer consuming it instead. --> <!-- do_not_remove: published-with-gradle-metadata --> <modelVersion>4.0.0</modelVersion> <groupId>com.bakdata.fluent-kafka-streams-tests</groupId> <artifactId>schema-registry-mock</artifactId> <version>2.16.0</version> <name>com.bakdata.fluent-kafka-streams-tests:schema-registry-mock</name> <description>Mocks the HTTP endpoint of the schema registry for seamlessly testing topologies with Avro serdes</description> <url>https://github.com/bakdata/fluent-kafka-streams-tests</url> <organization> <name>bakdata.com</name> <url>https://github.com/bakdata</url> </organization> <licenses> <license> <name>MIT License</name> <url>https://github.com/bakdata/fluent-kafka-streams-tests/blob/master/LICENSE</url> </license> </licenses> <developers> <developer> <id>AHeise</id> <name>Arvid Heise</name> </developer> <developer> <id>lawben</id> <name>Lawrence Benson</name> </developer> <developer> <id>torbsto</id> <name>Torben Meyer</name> </developer> <developer> <id>philipp98431</id> <name>Philipp Schirmer</name> </developer> </developers> <scm> <connection>scm:git:git://github.com/bakdata/fluent-kafka-streams-tests.git</connection> <developerConnection>scm:git:ssh://github.com/bakdata/fluent-kafka-streams-tests.git</developerConnection> <url>https://github.com/bakdata/fluent-kafka-streams-tests</url> </scm> <issueManagement> <system>GitHub</system> <url>https://github.com/bakdata/fluent-kafka-streams-tests/issues</url> </issueManagement> <dependencies> <dependency> <groupId>io.confluent</groupId> <artifactId>kafka-avro-serializer</artifactId> <version>7.8.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.confluent</groupId> <artifactId>kafka-schema-registry-client</artifactId> <version>7.8.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.confluent</groupId> <artifactId>kafka-streams-avro-serde</artifactId> <version>7.8.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.wiremock</groupId> <artifactId>wiremock</artifactId> <version>3.10.0</version> <scope>runtime</scope> </dependency> </dependencies> </project>