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-06-27 01:29:51 +02:00
|
|
|
<groupId>io.bisq</groupId>
|
2017-11-08 17:11:51 +01:00
|
|
|
<version>0.6.0</version>
|
2015-10-28 13:34:03 +01:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>network</artifactId>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2017-06-27 01:29:51 +02:00
|
|
|
<groupId>io.bisq</groupId>
|
2015-10-28 13:34:03 +01:00
|
|
|
<artifactId>common</artifactId>
|
2017-07-08 21:40:16 +02:00
|
|
|
<version>${project.version}</version>
|
2015-10-28 13:34:03 +01:00
|
|
|
</dependency>
|
2015-11-03 21:26:35 +01:00
|
|
|
<dependency>
|
2017-10-27 15:00:15 +02:00
|
|
|
<groupId>com.github.JesusMcCloud.netlayer</groupId>
|
|
|
|
<artifactId>tor.native</artifactId>
|
2017-11-05 04:46:06 +01:00
|
|
|
<version>e7195748</version>
|
2017-10-30 12:56:12 +01:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2017-10-26 10:56:50 +02:00
|
|
|
</dependency>
|
2016-07-26 02:04:18 +02:00
|
|
|
<dependency>
|
2017-06-27 01:39:09 +02:00
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
<artifactId>httpclient</artifactId>
|
2017-06-27 01:29:51 +02:00
|
|
|
<version>4.5.3</version>
|
2017-02-09 16:22:45 +01:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2016-07-26 02:04:18 +02:00
|
|
|
</dependency>
|
2017-06-27 01:29:51 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.sf.jopt-simple</groupId>
|
|
|
|
<artifactId>jopt-simple</artifactId>
|
|
|
|
<version>5.0.3</version>
|
|
|
|
</dependency>
|
2015-10-28 13:34:03 +01:00
|
|
|
</dependencies>
|
2017-02-09 16:22:45 +01:00
|
|
|
</project>
|