kafka-common-lib/pom.xml

109 lines
3.8 KiB
XML
Raw Normal View History

2019-04-19 11:45:50 +00:00
<?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>
2021-06-17 13:14:00 +00:00
<artifactId>library-parent-pom</artifactId>
<version>1.0.3</version>
2019-04-19 11:45:50 +00:00
</parent>
<modelVersion>4.0.0</modelVersion>
2019-04-19 13:12:50 +00:00
<packaging>jar</packaging>
2019-04-19 11:45:50 +00:00
<artifactId>kafka-common-lib</artifactId>
2021-07-29 08:52:42 +00:00
<version>0.1.9</version>
2019-04-19 11:45:50 +00:00
<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>
2019-04-19 11:45:50 +00:00
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>8</java.version>
2021-06-17 13:31:22 +00:00
<lombok.version>1.18.20</lombok.version>
<kafka.clients.version>2.8.0</kafka.clients.version>
2021-06-17 14:17:10 +00:00
<spring-kafka.version>2.7.2</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>
2019-04-19 11:45:50 +00:00
</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>
2019-08-02 08:50:08 +00:00
<groupId>org.springframework.kafka</groupId>
<artifactId>spring-kafka</artifactId>
2020-09-03 15:11:20 +00:00
<version>${spring-kafka.version}</version>
2019-04-19 11:45:50 +00:00
</dependency>
<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka-clients</artifactId>
<version>${kafka.clients.version}</version>
</dependency>
2019-04-29 09:25:58 +00:00
<!-- rbk -->
2019-04-19 13:12:50 +00:00
<dependency>
2019-08-02 08:50:08 +00:00
<groupId>com.rbkmoney</groupId>
<artifactId>machinegun-proto</artifactId>
<version>${machinegun-proto.version}</version>
<scope>provided</scope>
2019-08-02 08:50:08 +00:00
</dependency>
<dependency>
<groupId>com.rbkmoney.woody</groupId>
<artifactId>woody-thrift</artifactId>
<version>${woody.thrift.version}</version>
<scope>provided</scope>
2019-04-19 13:12:50 +00:00
</dependency>
2019-05-30 15:15:36 +00:00
<dependency>
<groupId>com.rbkmoney</groupId>
<artifactId>damsel</artifactId>
<version>${damsel.version}</version>
<scope>provided</scope>
2019-08-02 08:50:08 +00:00
</dependency>
<!-- test -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
2019-05-30 15:15:36 +00:00
<scope>test</scope>
</dependency>
2019-04-19 11:45:50 +00:00
</dependencies>
</project>