2015-10-28 13:34:03 +01: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>
|
|
|
|
<artifactId>parent</artifactId>
|
2017-03-12 16:00:40 -05:00
|
|
|
<groupId>io.bisq</groupId>
|
2017-02-12 13:38:26 -05:00
|
|
|
<version>0.5.0.0</version>
|
2015-10-28 13:34:03 +01:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>common</artifactId>
|
|
|
|
|
2017-03-27 22:47:52 -05:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<!-- https://www.xolstice.org/protobuf-maven-plugin/usage.html -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.xolstice.maven.plugins</groupId>
|
|
|
|
<artifactId>protobuf-maven-plugin</artifactId>
|
|
|
|
<version>0.5.0</version>
|
|
|
|
<configuration>
|
|
|
|
<protocExecutable>/usr/local/bin/protoc</protocExecutable>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>compile</goal>
|
|
|
|
<goal>test-compile</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2015-10-28 13:34:03 +01:00
|
|
|
<dependencies>
|
2017-03-27 22:47:52 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.protobuf</groupId>
|
|
|
|
<artifactId>protobuf-java</artifactId>
|
|
|
|
<version>3.2.0</version>
|
|
|
|
</dependency>
|
2015-10-28 13:34:03 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
<artifactId>gson</artifactId>
|
|
|
|
<version>2.2.4</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-core</artifactId>
|
2017-02-20 09:50:09 +01:00
|
|
|
<version>${spring.version}</version>
|
2015-10-28 13:34:03 +01:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|