bisq/network/pom.xml

49 lines
1.7 KiB
XML
Raw Normal View History

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>
<version>${project.version}</version>
2015-10-28 13:34:03 +01:00
</dependency>
<dependency>
<groupId>com.github.JesusMcCloud.netlayer</groupId>
<artifactId>tor.native</artifactId>
<version>e7195748</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<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>
</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>