vertx-spring-boot-sample-kafka
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>dev.snowdrop</groupId> <artifactId>vertx-spring-boot-sample-kafka</artifactId> <version>1.4.1.Beta1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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>dev.snowdrop</groupId> <artifactId>vertx-spring-boot-samples</artifactId> <version>1.4.1.Beta1</version> </parent> <artifactId>vertx-spring-boot-sample-kafka</artifactId> <dependencyManagement> <dependencies> <dependency> <groupId>dev.snowdrop</groupId> <artifactId>vertx-spring-boot-starter-http</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>dev.snowdrop</groupId> <artifactId>vertx-spring-boot-starter-kafka</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>dev.snowdrop</groupId> <artifactId>vertx-spring-boot-starter-http-test</artifactId> <version>${project.version}</version> </dependency> </dependencies> </dependencyManagement> <dependencies> <!-- Vert.x WebFlux starter used to handle HTTP requests --> <dependency> <groupId>dev.snowdrop</groupId> <artifactId>vertx-spring-boot-starter-http</artifactId> </dependency> <!-- Vert.x Kafka starter used to send and receive messages to/from Kafka cluster --> <dependency> <groupId>dev.snowdrop</groupId> <artifactId>vertx-spring-boot-starter-kafka</artifactId> </dependency> <!-- Test dependencies --> <dependency> <groupId>dev.snowdrop</groupId> <artifactId>vertx-spring-boot-starter-http-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.awaitility</groupId> <artifactId>awaitility</artifactId> <scope>test</scope> </dependency> <!-- Embedded Kafka for testing --> <dependency> <groupId>org.springframework.kafka</groupId> <artifactId>spring-kafka-test</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <finalName>${project.artifactId}</finalName> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <executions> <execution> <goals> <goal>repackage</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>