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>
|
2022-01-25 14:58:09 +00:00
|
|
|
<groupId>dev.vality</groupId>
|
|
|
|
<artifactId>library-parent-pom</artifactId>
|
2022-01-26 15:33:06 +00:00
|
|
|
<version>1.0.2</version>
|
2018-12-07 07:57:13 +00:00
|
|
|
</parent>
|
|
|
|
|
2018-12-04 14:10:50 +00:00
|
|
|
<artifactId>fraudo</artifactId>
|
2022-06-23 12:10:02 +00:00
|
|
|
<version>1.0.2</version>
|
2020-06-08 16:46:41 +00:00
|
|
|
|
|
|
|
<name>Fraudo</name>
|
|
|
|
<description>Language for describing antifraud patterns</description>
|
2022-01-25 14:58:09 +00:00
|
|
|
<url>https://github.com/valitydev/fraudo</url>
|
2020-06-08 16:46:41 +00:00
|
|
|
|
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<name>Konstantin Struzhkin</name>
|
2022-01-25 14:58:09 +00:00
|
|
|
<organization>Vality.Dev</organization>
|
|
|
|
<organizationUrl>https://vality.dev</organizationUrl>
|
2020-06-08 16:46:41 +00:00
|
|
|
</developer>
|
|
|
|
</developers>
|
|
|
|
|
|
|
|
<scm>
|
2022-01-25 14:58:09 +00:00
|
|
|
<connection>scm:git:git://github.com/valitydev/fraudo.git</connection>
|
|
|
|
<developerConnection>scm:git:ssh://github.com/valitydev/fraudo.git</developerConnection>
|
|
|
|
<url>https://github.com/valitydev/fraudo/tree/master</url>
|
2020-06-08 16:46:41 +00:00
|
|
|
</scm>
|
2018-12-04 14:10:50 +00:00
|
|
|
|
|
|
|
<properties>
|
2021-11-10 09:20:09 +00:00
|
|
|
<antlr4.version>4.7.1</antlr4.version>
|
2018-12-04 14:10:50 +00:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.antlr</groupId>
|
|
|
|
<artifactId>antlr4-runtime</artifactId>
|
2021-11-10 09:20:09 +00:00
|
|
|
<version>${antlr4.version}</version>
|
2018-12-04 14:10:50 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<version>1.18.4</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2019-09-30 10:41:09 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
<version>1.7.25</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2018-12-04 14:10:50 +00:00
|
|
|
|
|
|
|
<!-- tests -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-all</artifactId>
|
|
|
|
<version>1.9.5</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2020-06-10 11:03:17 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
|
|
<version>1.7.25</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2022-05-06 06:25:39 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-engine</artifactId>
|
|
|
|
<version>5.8.1</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2018-12-04 14:10:50 +00:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.antlr</groupId>
|
|
|
|
<artifactId>antlr4-maven-plugin</artifactId>
|
2021-11-10 09:20:09 +00:00
|
|
|
<version>${antlr4.version}</version>
|
2018-12-04 14:10:50 +00:00
|
|
|
<configuration>
|
|
|
|
<arguments>
|
|
|
|
<argument>-package</argument>
|
2022-01-25 14:58:09 +00:00
|
|
|
<argument>dev.vality.fraudo</argument>
|
2018-12-04 14:10:50 +00:00
|
|
|
</arguments>
|
|
|
|
<listener>false</listener>
|
|
|
|
<visitor>true</visitor>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>antlr</id>
|
|
|
|
<goals>
|
|
|
|
<goal>antlr4</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2022-01-26 15:33:06 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<version>3.3.1</version>
|
|
|
|
<configuration>
|
|
|
|
<sourceFileIncludes>
|
|
|
|
<sourceFileInclude>**\/\*.java</sourceFileInclude>
|
|
|
|
</sourceFileIncludes>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-javadocs</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<doclint>none</doclint>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2018-12-04 14:10:50 +00:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2021-01-22 10:03:05 +00:00
|
|
|
</project>
|