2017-03-17 00:04:53 +05:30
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2018-07-12 12:34:54 +05:30
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2018-04-26 18:07:47 +05:30
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>spring-kafka</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<name>spring-kafka</name>
|
|
|
|
<description>Intro to Kafka with Spring</description>
|
|
|
|
|
|
|
|
<parent>
|
2018-11-28 12:17:30 -02:00
|
|
|
<artifactId>parent-boot-2</artifactId>
|
2018-04-26 18:07:47 +05:30
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
2018-11-28 12:17:30 -02:00
|
|
|
<relativePath>../parent-boot-2</relativePath>
|
2018-04-26 18:07:47 +05:30
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.kafka</groupId>
|
|
|
|
<artifactId>spring-kafka</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<properties>
|
2019-07-09 06:18:29 -05:00
|
|
|
<spring-kafka.version>2.2.7.RELEASE</spring-kafka.version>
|
2018-04-26 18:07:47 +05:30
|
|
|
</properties>
|
2017-03-17 00:04:53 +05:30
|
|
|
|
|
|
|
</project>
|