2015-02-27 23:47:21 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2015-03-14 09:43:10 +01:00
|
|
|
<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">
|
2015-02-27 23:47:21 +01:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
2017-03-12 16:00:40 -05:00
|
|
|
<groupId>io.bisq</groupId>
|
2015-02-27 23:47:21 +01:00
|
|
|
<artifactId>parent</artifactId>
|
|
|
|
<packaging>pom</packaging>
|
2017-02-12 13:38:26 -05:00
|
|
|
<version>0.5.0.0</version>
|
2017-03-12 14:28:12 -05:00
|
|
|
<description>bisq - The decentralized bitcoin exchange</description>
|
2017-03-12 16:00:40 -05:00
|
|
|
<url>https://bisq.io</url>
|
2015-02-27 23:47:21 +01:00
|
|
|
|
|
|
|
<organization>
|
2017-03-12 16:00:40 -05:00
|
|
|
<name>bisq.io</name>
|
2015-02-27 23:47:21 +01:00
|
|
|
</organization>
|
|
|
|
|
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>GNU AFFERO GENERAL PUBLIC LICENSE</name>
|
|
|
|
<url>http://www.gnu.org/licenses/agpl-3.0.html</url>
|
|
|
|
<distribution>repo</distribution>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
|
|
|
|
<issueManagement>
|
|
|
|
<system>GitHub</system>
|
2017-03-12 16:00:40 -05:00
|
|
|
<url>https://github.com/bisq/bisq/issues</url>
|
2015-02-27 23:47:21 +01:00
|
|
|
</issueManagement>
|
|
|
|
|
|
|
|
<scm>
|
2017-03-12 16:00:40 -05:00
|
|
|
<connection>scm:git:https://github.com/bisq/bisq</connection>
|
|
|
|
<developerConnection>scm:git:https://github.com/bisq/bisq</developerConnection>
|
|
|
|
<url>scm:git:https://github.com/bisq/bisq</url>
|
2015-02-27 23:47:21 +01:00
|
|
|
</scm>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2017-02-20 09:50:09 +01:00
|
|
|
<spring.version>4.3.6.RELEASE</spring.version>
|
2015-02-27 23:47:21 +01:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<modules>
|
2015-10-28 02:11:59 +01:00
|
|
|
<module>common</module>
|
2017-03-21 23:10:54 -05:00
|
|
|
<module>network</module>
|
2015-03-13 20:15:20 +01:00
|
|
|
<module>core</module>
|
2015-11-06 00:43:21 +01:00
|
|
|
<module>jsocks</module>
|
|
|
|
<module>jtorctl</module>
|
|
|
|
<module>jtorproxy</module>
|
2016-07-12 16:37:15 +02:00
|
|
|
<module>gui</module>
|
2016-07-12 17:25:11 +02:00
|
|
|
<module>seednode</module>
|
2016-07-31 02:37:47 +02:00
|
|
|
<module>statistics</module>
|
2016-12-05 17:25:50 +01:00
|
|
|
<module>provider</module>
|
2015-02-27 23:47:21 +01:00
|
|
|
</modules>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.1</version>
|
|
|
|
<configuration>
|
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2017-01-30 07:53:52 +01:00
|
|
|
<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>
|
2015-02-27 23:47:21 +01:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>sonatype-oss-snapshot</id>
|
|
|
|
<snapshots/>
|
|
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<dependencies>
|
2017-02-09 23:58:55 -05:00
|
|
|
<!--bitcoinj
|
2017-03-16 13:26:58 -05:00
|
|
|
Needs local installation!
|
|
|
|
See doc/build.md for further info
|
|
|
|
-->
|
2015-10-28 02:11:59 +01:00
|
|
|
<dependency>
|
2015-11-11 18:25:07 +01:00
|
|
|
<groupId>org.bitcoinj</groupId>
|
|
|
|
<artifactId>bitcoinj-core</artifactId>
|
2017-03-21 23:10:54 -05:00
|
|
|
<version>0.13.1.11</version>
|
2017-02-20 17:04:17 +01:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>com.google.code.findbugs</groupId>
|
|
|
|
<artifactId>jsr305</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
</exclusion>
|
2017-03-07 16:41:23 +01:00
|
|
|
<exclusion>
|
|
|
|
<groupId>com.google.protobuf</groupId>
|
|
|
|
<artifactId>protobuf-java</artifactId>
|
|
|
|
</exclusion>
|
2017-02-20 17:04:17 +01:00
|
|
|
</exclusions>
|
2015-10-28 02:11:59 +01:00
|
|
|
</dependency>
|
|
|
|
|
2016-01-18 18:47:15 +01:00
|
|
|
<!--guice-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.inject</groupId>
|
|
|
|
<artifactId>guice</artifactId>
|
|
|
|
<version>3.0</version>
|
|
|
|
</dependency>
|
|
|
|
|
2015-11-11 18:25:07 +01:00
|
|
|
<!--crypto-->
|
2015-10-28 02:11:59 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.bouncycastle</groupId>
|
|
|
|
<artifactId>bcprov-jdk15on</artifactId>
|
2015-11-02 01:57:00 +01:00
|
|
|
<version>1.53</version>
|
2015-10-28 02:11:59 +01:00
|
|
|
</dependency>
|
|
|
|
|
2017-03-26 15:21:39 -05:00
|
|
|
<!-- We need both bcpg-jdk15on and bcpg-jdk16 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.bouncycastle</groupId>
|
|
|
|
<artifactId>bcpg-jdk15on</artifactId>
|
|
|
|
<version>1.56</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.bouncycastle</groupId>
|
|
|
|
<artifactId>bcpg-jdk16</artifactId>
|
|
|
|
<version>1.46</version>
|
|
|
|
</dependency>
|
|
|
|
|
2017-03-16 13:26:58 -05:00
|
|
|
<!--http-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
<artifactId>httpcore</artifactId>
|
|
|
|
<version>4.4.1</version>
|
|
|
|
</dependency>
|
|
|
|
|
2015-11-11 18:25:07 +01:00
|
|
|
<!--utils-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
<version>2.4</version>
|
|
|
|
</dependency>
|
2016-02-01 19:21:04 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
<version>3.4</version>
|
|
|
|
</dependency>
|
2015-10-28 02:11:59 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
2015-11-05 20:55:55 +01:00
|
|
|
<version>18.0</version>
|
2015-10-28 02:11:59 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.fxmisc.easybind</groupId>
|
|
|
|
<artifactId>easybind</artifactId>
|
|
|
|
<version>1.0.3</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.reactfx</groupId>
|
|
|
|
<artifactId>reactfx</artifactId>
|
2017-02-10 14:29:18 -05:00
|
|
|
<version>2.0-M3</version>
|
2015-10-28 02:11:59 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jetbrains</groupId>
|
|
|
|
<artifactId>annotations</artifactId>
|
|
|
|
<version>13.0</version>
|
|
|
|
</dependency>
|
2016-10-06 02:11:54 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.code.findbugs</groupId>
|
|
|
|
<artifactId>jsr305</artifactId>
|
|
|
|
<version>3.0.1</version>
|
|
|
|
</dependency>
|
2017-01-17 02:56:30 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
2017-04-01 11:41:13 -05:00
|
|
|
<version>1.16.16</version>
|
2017-01-17 02:56:30 +01:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2017-01-30 07:53:52 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.protobuf</groupId>
|
|
|
|
<artifactId>protobuf-java</artifactId>
|
2017-03-01 09:20:13 +01:00
|
|
|
<version>3.2.0</version>
|
|
|
|
</dependency>
|
2015-10-28 02:11:59 +01:00
|
|
|
|
2015-11-11 18:25:07 +01:00
|
|
|
<!--logging-->
|
2015-10-28 02:11:59 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
2017-02-09 16:22:45 +01:00
|
|
|
<version>1.7.22</version>
|
2015-10-28 02:11:59 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
<artifactId>logback-core</artifactId>
|
2017-02-09 16:22:45 +01:00
|
|
|
<version>1.1.10</version>
|
2015-10-28 02:11:59 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
<artifactId>logback-classic</artifactId>
|
2017-02-09 16:22:45 +01:00
|
|
|
<version>1.1.10</version>
|
2015-10-28 02:11:59 +01:00
|
|
|
</dependency>
|
|
|
|
|
2015-11-11 18:25:07 +01:00
|
|
|
<!--unit test-->
|
2015-02-27 23:47:21 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>4.11</version>
|
2015-10-28 02:11:59 +01:00
|
|
|
<scope>test</scope>
|
2015-02-27 23:47:21 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-core</artifactId>
|
2017-02-09 16:22:45 +01:00
|
|
|
<version>2.7.5</version>
|
2015-10-28 02:11:59 +01:00
|
|
|
<scope>test</scope>
|
2015-02-27 23:47:21 +01:00
|
|
|
</dependency>
|
2017-03-01 09:20:13 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.jmockit</groupId>
|
|
|
|
<artifactId>jmockit</artifactId>
|
|
|
|
<version>1.30</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2017-03-16 13:26:58 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.protobuf</groupId>
|
|
|
|
<artifactId>protobuf-java-util</artifactId>
|
|
|
|
<version>3.2.0</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2015-02-27 23:47:21 +01:00
|
|
|
<dependency>
|
2015-11-11 18:25:07 +01:00
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-test</artifactId>
|
2017-02-20 09:50:09 +01:00
|
|
|
<version>${spring.version}</version>
|
2015-10-28 02:11:59 +01:00
|
|
|
<scope>test</scope>
|
2015-02-27 23:47:21 +01:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2016-06-21 23:03:39 +02:00
|
|
|
</project>
|