2015-02-27 23:47:21 +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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<artifactId>parent</artifactId>
|
|
|
|
<groupId>io.bitsquare</groupId>
|
2017-02-12 19:38:26 +01:00
|
|
|
<version>0.5.0.0</version>
|
2015-02-27 23:47:21 +01:00
|
|
|
</parent>
|
|
|
|
|
2015-03-13 20:15:20 +01:00
|
|
|
<artifactId>core</artifactId>
|
2015-02-27 23:47:21 +01:00
|
|
|
|
|
|
|
<dependencies>
|
2015-03-24 17:16:34 +01:00
|
|
|
<dependency>
|
2015-10-28 02:11:59 +01:00
|
|
|
<groupId>io.bitsquare</groupId>
|
|
|
|
<artifactId>common</artifactId>
|
|
|
|
<version>${project.parent.version}</version>
|
2015-03-24 17:16:34 +01:00
|
|
|
</dependency>
|
2015-02-27 23:47:21 +01:00
|
|
|
<dependency>
|
2015-10-28 02:11:59 +01:00
|
|
|
<groupId>io.bitsquare</groupId>
|
|
|
|
<artifactId>network</artifactId>
|
|
|
|
<version>${project.parent.version}</version>
|
2015-02-27 23:47:21 +01:00
|
|
|
</dependency>
|
2015-04-09 02:41:43 +02:00
|
|
|
|
2015-02-27 23:47:21 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.sf.jopt-simple</groupId>
|
|
|
|
<artifactId>jopt-simple</artifactId>
|
2017-02-17 14:45:02 +01:00
|
|
|
<version>5.0.3</version>
|
2015-02-27 23:47:21 +01:00
|
|
|
</dependency>
|
2015-04-08 16:24:15 +02:00
|
|
|
|
2017-02-20 20:29:58 +01:00
|
|
|
<!-- We use a local project atm but should be added either as jar or to a https repo.
|
|
|
|
Default repo for that project is http only, so it is unsafe to use.-->
|
2017-01-08 22:09:41 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.neemre.btcd-cli4j</groupId>
|
|
|
|
<artifactId>btcd-cli4j-core</artifactId>
|
2017-02-22 08:57:20 +01:00
|
|
|
<version>0.5.8</version>
|
2017-02-20 20:29:58 +01:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
<artifactId>httpclient</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2017-01-08 22:09:41 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.neemre.btcd-cli4j</groupId>
|
|
|
|
<artifactId>btcd-cli4j-daemon</artifactId>
|
2017-02-22 08:57:20 +01:00
|
|
|
<version>0.5.8</version>
|
2017-02-20 20:29:58 +01:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
<artifactId>httpclient</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2017-01-08 22:09:41 +01:00
|
|
|
</dependency>
|
2015-02-27 23:47:21 +01:00
|
|
|
</dependencies>
|
|
|
|
</project>
|