mirror of
https://github.com/valitydev/geck.git
synced 2024-11-06 09:45:24 +00:00
54 lines
1.7 KiB
XML
54 lines
1.7 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.0</version>
|
||
|
</parent>
|
||
|
|
||
|
<groupId>com.rbkmoney</groupId>
|
||
|
<artifactId>kebab</artifactId>
|
||
|
<version>0.1-SNAPSHOT</version>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>com.rbkmoney.thrift</groupId>
|
||
|
<artifactId>libthrift</artifactId>
|
||
|
<version>0.9.3-3</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>junit</groupId>
|
||
|
<artifactId>junit</artifactId>
|
||
|
<version>4.12</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
<build>
|
||
|
<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>
|
||
|
</build>
|
||
|
|
||
|
</project>
|