mirror of
https://github.com/valitydev/geck.git
synced 2024-11-06 01:35:22 +00:00
e65091b1f3
* BJ-157: Added json processor; modified json-handler * Added re-usable json-handler. Up pom version. Fixed readme. * lol * Fixed structure size, removed type identifiers for strings, added IllegalArgumentException catching * Fixed bug with string escaping * Fixed * added test for checking work jsonprocessor with msgpackhandler
124 lines
4.4 KiB
XML
124 lines
4.4 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>parent</artifactId>
|
|
<version>1.0.2</version>
|
|
</parent>
|
|
|
|
<groupId>com.rbkmoney.geck</groupId>
|
|
<artifactId>parent</artifactId>
|
|
<version>0.3.0-SNAPSHOT</version>
|
|
<packaging>pom</packaging>
|
|
|
|
<modules>
|
|
<module>serializer</module>
|
|
<module>migrator</module>
|
|
<module>filter</module>
|
|
<module>common</module>
|
|
</modules>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.rbkmoney.geck</groupId>
|
|
<artifactId>migrator</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.rbkmoney.geck</groupId>
|
|
<artifactId>serializer</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.rbkmoney.geck</groupId>
|
|
<artifactId>filter</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.rbkmoney.geck</groupId>
|
|
<artifactId>common</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.rbkmoney.thrift</groupId>
|
|
<artifactId>libthrift</artifactId>
|
|
<version>0.9.3-4</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.msgpack</groupId>
|
|
<artifactId>msgpack-core</artifactId>
|
|
<version>0.8.11</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.sf.trove4j</groupId>
|
|
<artifactId>trove4j</artifactId>
|
|
<version>3.0.3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.bazaarvoice.jolt</groupId>
|
|
<artifactId>jolt-core</artifactId>
|
|
<version>0.1.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.bazaarvoice.jolt</groupId>
|
|
<artifactId>json-utils</artifactId>
|
|
<version>0.1.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.reflections</groupId>
|
|
<artifactId>reflections</artifactId>
|
|
<version>0.9.11</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.json</groupId>
|
|
<artifactId>json</artifactId>
|
|
<version>20160810</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.12</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.assertj</groupId>
|
|
<artifactId>assertj-core</artifactId>
|
|
<version>3.6.2</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<build>
|
|
<pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.thrift</groupId>
|
|
<artifactId>thrift-maven-plugin</artifactId>
|
|
<version>0.9.3-1</version>
|
|
<configuration>
|
|
<thriftExecutable>thrift</thriftExecutable>
|
|
<generator>java:fullcamel</generator>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>thrift-test-sources</id>
|
|
<phase>generate-test-sources</phase>
|
|
<goals>
|
|
<goal>testCompile</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
</build>
|
|
|
|
</project>
|