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>
|
2016-08-07 04:17:13 +02:00
|
|
|
<version>0.4.9.3</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
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<!-- <plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-enforcer-plugin</artifactId>
|
|
|
|
<version>1.3.1</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>enforce</id>
|
|
|
|
<configuration>
|
|
|
|
<rules>
|
|
|
|
<DependencyConvergence />
|
|
|
|
</rules>
|
|
|
|
</configuration>
|
|
|
|
<goals>
|
|
|
|
<goal>enforce</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>-->
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<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>
|
|
|
|
<version>4.8</version>
|
|
|
|
</dependency>
|
2015-04-08 16:24:15 +02:00
|
|
|
|
2015-02-27 23:47:21 +01:00
|
|
|
</dependencies>
|
|
|
|
</project>
|