2016-06-29 14:03:09 +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>
|
|
|
|
<artifactId>parent</artifactId>
|
2020-10-27 13:05:46 +00:00
|
|
|
<version>1.0.5</version>
|
2016-06-29 14:03:09 +00:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
2016-07-18 11:15:11 +00:00
|
|
|
<artifactId>eventstock-client</artifactId>
|
2020-11-02 12:19:39 +00:00
|
|
|
<version>1.2.12</version>
|
2018-11-06 14:32:02 +00:00
|
|
|
<packaging>pom</packaging>
|
2017-08-10 09:56:58 +00:00
|
|
|
|
2020-10-27 13:05:46 +00:00
|
|
|
<name>Event stock client lib</name>
|
|
|
|
<description>Bustermaze java client library for handy interaction</description>
|
|
|
|
<url>https://github.com/rbkmoney/event_stock_client_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/event_stock_client_lib.git</connection>
|
|
|
|
<developerConnection>scm:git:ssh://github.com/rbkmoney/event_stock_client_lib.git</developerConnection>
|
|
|
|
<url>https://github.com/rbkmoney/event_stock_client_lib/tree/master</url>
|
|
|
|
</scm>
|
|
|
|
|
2017-08-10 09:56:58 +00:00
|
|
|
<properties>
|
2020-10-27 13:05:46 +00:00
|
|
|
<woody.version>[1.1.22,)</woody.version>
|
|
|
|
<geck.version>0.6.11</geck.version>
|
2018-11-06 14:32:02 +00:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2017-08-10 09:56:58 +00:00
|
|
|
</properties>
|
2016-06-29 14:03:09 +00:00
|
|
|
|
2018-11-06 14:32:02 +00:00
|
|
|
<modules>
|
|
|
|
<module>eventstock-client-core</module>
|
|
|
|
<module>eventstock-client-damsel</module>
|
|
|
|
<module>eventstock-client-fistful</module>
|
2018-12-07 15:54:50 +00:00
|
|
|
<module>eventstock-client-xrates</module>
|
2018-11-06 14:32:02 +00:00
|
|
|
</modules>
|
2016-06-29 14:03:09 +00:00
|
|
|
|
2018-11-06 14:32:02 +00:00
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<!--RBK libs-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.rbkmoney</groupId>
|
|
|
|
<artifactId>eventstock-client-core</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.rbkmoney.woody</groupId>
|
|
|
|
<artifactId>woody-thrift</artifactId>
|
|
|
|
<version>${woody.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.rbkmoney.geck</groupId>
|
|
|
|
<artifactId>filter</artifactId>
|
|
|
|
<version>${geck.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<!--Test libs-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.rbkmoney.geck</groupId>
|
|
|
|
<artifactId>serializer</artifactId>
|
|
|
|
<version>${geck.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
|
|
<version>1.7.21</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-quickstart</artifactId>
|
2020-10-27 13:05:46 +00:00
|
|
|
<version>9.4.32.v20200930</version>
|
2018-11-06 14:32:02 +00:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
2020-10-27 13:05:46 +00:00
|
|
|
<version>4.13.1</version>
|
2018-11-06 14:32:02 +00:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.hamcrest</groupId>
|
|
|
|
<artifactId>hamcrest-library</artifactId>
|
2020-10-27 13:05:46 +00:00
|
|
|
<version>2.2</version>
|
2018-11-06 14:32:02 +00:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
2016-06-29 14:03:09 +00:00
|
|
|
|
2017-02-07 15:29:25 +00:00
|
|
|
</project>
|