2018-12-04 14:10: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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
2018-12-07 07:57:13 +00:00
|
|
|
<parent>
|
|
|
|
<groupId>com.rbkmoney</groupId>
|
|
|
|
<artifactId>parent</artifactId>
|
|
|
|
<version>1.0.2</version>
|
|
|
|
</parent>
|
|
|
|
|
2018-12-04 14:10:50 +00:00
|
|
|
<artifactId>fraudo</artifactId>
|
2019-09-24 15:51:39 +00:00
|
|
|
<version>0.0.6-SNAPSHOT</version>
|
2018-12-04 14:10:50 +00:00
|
|
|
|
|
|
|
<properties>
|
|
|
|
<hamcrest.junit.version>2.0.0.0</hamcrest.junit.version>
|
2018-12-28 14:23:56 +00:00
|
|
|
<sonar.jacoco.reportPath>${project.basedir}/../target/jacoco.exec</sonar.jacoco.reportPath>
|
2018-12-04 14:10:50 +00:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.antlr</groupId>
|
|
|
|
<artifactId>antlr4-runtime</artifactId>
|
|
|
|
<version>4.7.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>4.12</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<version>1.18.4</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- tests -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.hamcrest</groupId>
|
|
|
|
<artifactId>hamcrest-junit</artifactId>
|
|
|
|
<version>${hamcrest.junit.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-all</artifactId>
|
|
|
|
<version>1.9.5</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.antlr</groupId>
|
|
|
|
<artifactId>antlr4-maven-plugin</artifactId>
|
|
|
|
<version>4.7.1</version>
|
|
|
|
<configuration>
|
|
|
|
<arguments>
|
|
|
|
<argument>-package</argument>
|
|
|
|
<argument>com.rbkmoney.fraudo</argument>
|
|
|
|
</arguments>
|
|
|
|
<listener>false</listener>
|
|
|
|
<visitor>true</visitor>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>antlr</id>
|
|
|
|
<goals>
|
|
|
|
<goal>antlr4</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2018-12-28 14:23:56 +00:00
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.jacoco</groupId>
|
|
|
|
<artifactId>jacoco-maven-plugin</artifactId>
|
|
|
|
<version>0.8.2</version>
|
|
|
|
<configuration>
|
|
|
|
<destFile>${sonar.jacoco.reportPath}</destFile>
|
|
|
|
<append>true</append>
|
|
|
|
<excludes>
|
|
|
|
<exclude>com/rbkmoney/fraudo/constant/**/*</exclude>
|
|
|
|
<exclude>com/rbkmoney/fraudo/model/**/*</exclude>
|
|
|
|
</excludes>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>agent</id>
|
|
|
|
<goals>
|
|
|
|
<goal>prepare-agent</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
|
2018-12-04 14:10:50 +00:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|