mirror of
https://github.com/valitydev/kafka-common-lib.git
synced 2024-11-06 08:55:22 +00:00
109 lines
3.8 KiB
XML
109 lines
3.8 KiB
XML
<?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">
|
|
|
|
<parent>
|
|
<groupId>com.rbkmoney</groupId>
|
|
<artifactId>library-parent-pom</artifactId>
|
|
<version>1.0.3</version>
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<packaging>jar</packaging>
|
|
|
|
<artifactId>kafka-common-lib</artifactId>
|
|
<version>0.1.8</version>
|
|
|
|
<name>Kafka common lib</name>
|
|
<description>Kafka serializers/deserializers</description>
|
|
<url>https://github.com/rbkmoney/kafka-common-lib</url>
|
|
|
|
<licenses>
|
|
<license>
|
|
<name>The Apache Software License, Version 2.0</name>
|
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
|
</license>
|
|
</licenses>
|
|
|
|
<developers>
|
|
<developer>
|
|
<organization>RBK.money</organization>
|
|
<organizationUrl>https://rbk.money</organizationUrl>
|
|
</developer>
|
|
</developers>
|
|
|
|
<scm>
|
|
<connection>scm:git:git://github.com/rbkmoney/kafka-common-lib.git</connection>
|
|
<developerConnection>scm:git:ssh://github.com/rbkmoney/kafka-common-lib.git</developerConnection>
|
|
<url>https://github.com/rbkmoney/kafka-common-lib/tree/master</url>
|
|
</scm>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
<java.version>8</java.version>
|
|
<lombok.version>1.18.20</lombok.version>
|
|
<kafka.clients.version>2.8.0</kafka.clients.version>
|
|
<spring-kafka.version>2.7.0</spring-kafka.version>
|
|
<damsel.version>1.431-2f62a8c</damsel.version>
|
|
<machinegun-proto.version>1.18-d814d69</machinegun-proto.version>
|
|
<woody.thrift.version>[1.1.21,)</woody.thrift.version>
|
|
</properties>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-api</artifactId>
|
|
<version>1.7.25</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>${lombok.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.kafka</groupId>
|
|
<artifactId>spring-kafka</artifactId>
|
|
<version>${spring-kafka.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.kafka</groupId>
|
|
<artifactId>kafka-clients</artifactId>
|
|
<version>${kafka.clients.version}</version>
|
|
</dependency>
|
|
|
|
<!-- rbk -->
|
|
<dependency>
|
|
<groupId>com.rbkmoney</groupId>
|
|
<artifactId>machinegun-proto</artifactId>
|
|
<version>${machinegun-proto.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.rbkmoney.woody</groupId>
|
|
<artifactId>woody-thrift</artifactId>
|
|
<version>${woody.thrift.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.rbkmoney</groupId>
|
|
<artifactId>damsel</artifactId>
|
|
<version>${damsel.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<!-- test -->
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.12</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|