mirror of
https://github.com/valitydev/fraudbusters.git
synced 2024-11-06 09:35:18 +00:00
166 lines
6.1 KiB
XML
166 lines
6.1 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">
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
||
|
<parent>
|
||
|
<groupId>com.rbkmoney</groupId>
|
||
|
<artifactId>spring-boot-starter-parent</artifactId>
|
||
|
<version>2.0.1.RELEASE</version>
|
||
|
</parent>
|
||
|
|
||
|
<groupId>com.rbkmoney</groupId>
|
||
|
<artifactId>fraudbusters</artifactId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
|
||
|
<properties>
|
||
|
<project.maintainer>Struzhkin Konstantin <k.struzhkin@rbkmoney.com></project.maintainer>
|
||
|
<shared.resources.version>0.2.1</shared.resources.version>
|
||
|
<server.port>8022</server.port>
|
||
|
<dockerfile.base.service.tag>22c57470c4fc47161894f036b7cf9d70f42b75f5</dockerfile.base.service.tag>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
<drools-version>7.0.0.Final</drools-version>
|
||
|
<geck.version>0.6.7</geck.version>
|
||
|
</properties>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-web</artifactId>
|
||
|
<exclusions>
|
||
|
<exclusion>
|
||
|
<groupId>org.hibernate</groupId>
|
||
|
<artifactId>hibernate-validator</artifactId>
|
||
|
</exclusion>
|
||
|
</exclusions>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>net.logstash.logback</groupId>
|
||
|
<artifactId>logstash-logback-encoder</artifactId>
|
||
|
<version>4.6</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.rbkmoney.logback</groupId>
|
||
|
<artifactId>nop-rolling</artifactId>
|
||
|
<version>1.0.1</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.projectlombok</groupId>
|
||
|
<artifactId>lombok</artifactId>
|
||
|
<version>1.18.4</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.kafka</groupId>
|
||
|
<artifactId>kafka-streams</artifactId>
|
||
|
<version>2.1.0</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.rbkmoney</groupId>
|
||
|
<artifactId>fraudo</artifactId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.rbkmoney.geck</groupId>
|
||
|
<artifactId>common</artifactId>
|
||
|
<version>${geck.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.rbkmoney.geck</groupId>
|
||
|
<artifactId>serializer</artifactId>
|
||
|
<version>${geck.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>ru.yandex.clickhouse</groupId>
|
||
|
<artifactId>clickhouse-jdbc</artifactId>
|
||
|
<version>0.1.41</version>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>com.zaxxer</groupId>
|
||
|
<artifactId>HikariCP-java6</artifactId>
|
||
|
<version>2.3.8</version>
|
||
|
</dependency>
|
||
|
|
||
|
|
||
|
<!-- Test libs -->
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-test</artifactId>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.testcontainers</groupId>
|
||
|
<artifactId>clickhouse</artifactId>
|
||
|
<version>1.10.2</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.kafka</groupId>
|
||
|
<artifactId>kafka-streams-test-utils</artifactId>
|
||
|
<version>2.1.0</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
</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.5</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>
|
||
|
</plugins>
|
||
|
|
||
|
</build>
|
||
|
</project>
|