woody_java/pom.xml
Vladimir Pankrashkin 891a65a671 MSPF-117: IdGenerator changed, context aware execution refactored (#17)
* MSPF-117: IdGenerator changed, context aware execution refactored

* MSPF-117: Error mapping refactoring

* MSPF-117: Test fixes, bug fixes

* MSPF-117: Regenerated thrift models

* MSPF-117: Bugfixes

* MSPF-120: Added woody metadata extensions, Bugfixes
2017-01-27 16:49:27 +03:00

43 lines
1.3 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">
<parent>
<groupId>com.rbkmoney</groupId>
<artifactId>parent</artifactId>
<version>1.0.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<packaging>pom</packaging>
<groupId>com.rbkmoney.woody</groupId>
<artifactId>woody</artifactId>
<version>1.1.0</version>
<description>Java implementation for Woody spec</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<modules>
<module>woody-api</module>
<module>woody-thrift</module>
</modules>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.rbkmoney.woody</groupId>
<artifactId>woody-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.21</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>