bisq/network/pom.xml

38 lines
1.2 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>
<groupId>io.bitsquare</groupId>
2016-11-19 14:36:23 +01:00
<version>0.4.9.8</version>
2015-10-28 13:34:03 +01:00
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>network</artifactId>
<dependencies>
<dependency>
<groupId>io.bitsquare</groupId>
<artifactId>common</artifactId>
<version>${project.parent.version}</version>
</dependency>
2015-11-11 18:25:07 +01:00
<dependency>
2015-11-06 00:43:21 +01:00
<groupId>io.bitsquare</groupId>
<artifactId>jtorproxy</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5</version>
</dependency>
<dependency>
<groupId>net.sf.jopt-simple</groupId>
<artifactId>jopt-simple</artifactId>
<version>4.8</version>
</dependency>
2015-10-28 13:34:03 +01:00
</dependencies>
</project>