2019-01-15 10:45:06 +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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>com.rbkmoney</groupId>
|
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
|
|
<version>2.1.1.RELEASE</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>wb-list-manager</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<name>wb-list-manager</name>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
<java.version>11</java.version>
|
|
|
|
<server.port>8022</server.port>
|
|
|
|
<exposed.ports>${server.port}</exposed.ports>
|
2019-04-18 10:30:32 +00:00
|
|
|
<dockerfile.base.service.tag>bc95d0d6dc13c693acd2b274531a7d604b877bf3</dockerfile.base.service.tag>
|
|
|
|
<dockerfile.registry>dr2.rbkmoney.com</dockerfile.registry>
|
|
|
|
<shared.resources.version>0.3.6</shared.resources.version>
|
|
|
|
<wb.list.proto.version>1.20-2c2fb6a</wb.list.proto.version>
|
|
|
|
<kafka.streams.version>2.1.0</kafka.streams.version>
|
|
|
|
<kafka.clients.version>2.1.0</kafka.clients.version>
|
2019-07-03 09:41:37 +00:00
|
|
|
<kafka.common.lib.version>0.0.9</kafka.common.lib.version>
|
2019-01-15 10:45:06 +00:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.rbkmoney</groupId>
|
|
|
|
<artifactId>shared-resources</artifactId>
|
|
|
|
<version>${shared.resources.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>javax.servlet-api</artifactId>
|
|
|
|
<version>4.0.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.rbkmoney.woody</groupId>
|
|
|
|
<artifactId>woody-thrift</artifactId>
|
|
|
|
<version>1.1.15</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.rbkmoney</groupId>
|
|
|
|
<artifactId>spring-boot-starter-metrics-statsd</artifactId>
|
|
|
|
<version>1.1.0</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<version>1.18.4</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.testcontainers</groupId>
|
|
|
|
<artifactId>testcontainers</artifactId>
|
|
|
|
<version>1.10.5</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.basho.riak</groupId>
|
|
|
|
<artifactId>riak-client</artifactId>
|
|
|
|
<version>2.1.1</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!--kafka-->
|
2019-04-18 10:30:32 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.kafka</groupId>
|
|
|
|
<artifactId>kafka-streams</artifactId>
|
|
|
|
<version>${kafka.streams.version}</version>
|
|
|
|
</dependency>
|
2019-01-15 10:45:06 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.kafka</groupId>
|
|
|
|
<artifactId>kafka-clients</artifactId>
|
2019-04-18 10:30:32 +00:00
|
|
|
<version>${kafka.clients.version}</version>
|
2019-01-15 10:45:06 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.kafka</groupId>
|
|
|
|
<artifactId>spring-kafka</artifactId>
|
|
|
|
<version>2.2.2.RELEASE</version>
|
|
|
|
<exclusions>
|
2019-04-18 10:30:32 +00:00
|
|
|
<exclusion>
|
|
|
|
<groupId>org.apache.kafka</groupId>
|
|
|
|
<artifactId>kafka-streams</artifactId>
|
|
|
|
</exclusion>
|
2019-01-15 10:45:06 +00:00
|
|
|
<exclusion>
|
|
|
|
<groupId>org.apache.kafka</groupId>
|
|
|
|
<artifactId>kafka-clients</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.testcontainers</groupId>
|
|
|
|
<artifactId>kafka</artifactId>
|
|
|
|
<version>1.10.2</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.rbkmoney</groupId>
|
|
|
|
<artifactId>wb-list-proto</artifactId>
|
2019-01-15 13:21:14 +00:00
|
|
|
<version>${wb.list.proto.version}</version>
|
2019-01-15 10:45:06 +00:00
|
|
|
</dependency>
|
2019-07-03 09:41:37 +00:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.rbkmoney</groupId>
|
|
|
|
<artifactId>kafka-common-lib</artifactId>
|
|
|
|
<version>${kafka.common.lib.version}</version>
|
|
|
|
</dependency>
|
2019-01-15 10:45:06 +00:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>${project.build.directory}/maven-shared-archive-resources</directory>
|
|
|
|
<targetPath>${project.build.directory}</targetPath>
|
|
|
|
<includes>
|
|
|
|
<include>Dockerfile</include>
|
|
|
|
</includes>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
<resource>
|
|
|
|
<directory>${project.build.directory}/maven-shared-archive-resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
<excludes>
|
|
|
|
<exclude>Dockerfile</exclude>
|
|
|
|
</excludes>
|
|
|
|
</resource>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-remote-resources-plugin</artifactId>
|
|
|
|
<version>1.6.0</version>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.shared</groupId>
|
|
|
|
<artifactId>maven-filtering</artifactId>
|
|
|
|
<version>1.3</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<configuration>
|
|
|
|
<resourceBundles>
|
|
|
|
<resourceBundle>com.rbkmoney:shared-resources:${shared.resources.version}</resourceBundle>
|
|
|
|
</resourceBundles>
|
|
|
|
<attachToMain>false</attachToMain>
|
|
|
|
<attachToTest>false</attachToTest>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>process</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<!-- Sonar-JaCoCo integration plugin -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.jacoco</groupId>
|
|
|
|
<artifactId>jacoco-maven-plugin</artifactId>
|
|
|
|
<version>0.8.2</version>
|
|
|
|
<configuration>
|
|
|
|
<destFile>${sonar.jacoco.reportPath}</destFile>
|
|
|
|
<append>true</append>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>agent</id>
|
|
|
|
<goals>
|
|
|
|
<goal>prepare-agent</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|