2014-04-11 11:33:48 +02: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>
|
|
|
|
|
2014-04-15 01:29:34 +02:00
|
|
|
<groupId>io.bitsquare</groupId>
|
2014-04-11 11:33:48 +02:00
|
|
|
<artifactId>bitsquare</artifactId>
|
2014-04-15 01:29:34 +02:00
|
|
|
<version>0.01-SNAPSHOT</version>
|
2014-04-11 11:33:48 +02:00
|
|
|
<name>BitSquare</name>
|
|
|
|
<description>A P2P Fiat-Bitcoin Exchange</description>
|
|
|
|
<url>https://www.bitsquare.io</url>
|
|
|
|
|
2014-04-15 01:29:34 +02:00
|
|
|
<parent>
|
|
|
|
<groupId>com.google</groupId>
|
|
|
|
<artifactId>bitcoinj-parent</artifactId>
|
|
|
|
<version>0.12-SNAPSHOT</version>
|
|
|
|
<relativePath>libs/bitcoinj/pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
2014-04-11 11:33:48 +02:00
|
|
|
<licenses>
|
|
|
|
<license>
|
2014-04-28 17:26:26 +02:00
|
|
|
<name>GNU AFFERO GENERAL PUBLIC LICENSE</name>
|
|
|
|
<url>http://www.gnu.org/licenses/agpl-3.0.html</url>
|
2014-04-11 11:33:48 +02:00
|
|
|
<distribution>repo</distribution>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
|
2014-04-28 17:26:26 +02:00
|
|
|
<issueManagement>
|
|
|
|
<system>GitHub</system>
|
|
|
|
<url>https://github.com/bitsquare/bitsquare/issues</url>
|
|
|
|
</issueManagement>
|
|
|
|
|
2014-04-11 11:33:48 +02:00
|
|
|
<scm>
|
2014-04-28 17:26:26 +02:00
|
|
|
<!-- Public read-only source -->
|
2014-04-11 11:33:48 +02:00
|
|
|
<url>https://github.com/bitsquare/bitsquare</url>
|
|
|
|
</scm>
|
|
|
|
|
2014-04-15 01:29:34 +02:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>sonatype-oss-snapshot</id>
|
|
|
|
<snapshots/>
|
|
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>sonatype-oss-snapshot2</id>
|
|
|
|
<snapshots/>
|
|
|
|
<url>https://oss.sonatype.org/content/groups/public</url>
|
|
|
|
</repository>
|
|
|
|
<!-- bitcoin-j repo -->
|
|
|
|
<repository>
|
|
|
|
<id>bitcoinj-release</id>
|
2014-05-10 18:31:55 +02:00
|
|
|
<releases/>
|
2014-04-15 01:29:34 +02:00
|
|
|
<url>http://distribution.bitcoinj.googlecode.com/git/releases</url>
|
|
|
|
</repository>
|
|
|
|
<!-- zxing repo -->
|
|
|
|
<repository>
|
|
|
|
<id>mvn-adamgent</id>
|
|
|
|
<url>http://mvn-adamgent.googlecode.com/svn/maven/release</url>
|
|
|
|
<name>Adam Gent Maven Repository</name>
|
|
|
|
</repository>
|
2014-05-10 18:31:55 +02:00
|
|
|
|
|
|
|
<repository>
|
|
|
|
<id>tomp2p.net</id>
|
|
|
|
<url>http://tomp2p.net/dev/mvn/</url>
|
|
|
|
</repository>
|
|
|
|
|
2014-04-15 01:29:34 +02:00
|
|
|
</repositories>
|
|
|
|
|
2014-04-28 17:26:26 +02:00
|
|
|
<!-- TODO Maven build not working yet... -->
|
2014-04-11 11:33:48 +02:00
|
|
|
<build>
|
2014-04-28 17:26:26 +02:00
|
|
|
<finalName>bitsquare</finalName>
|
2014-04-11 11:33:48 +02:00
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/java</directory>
|
2014-04-28 17:26:26 +02:00
|
|
|
<filtering>true</filtering>
|
|
|
|
<includes>
|
|
|
|
<include>**/*.fxml</include>
|
|
|
|
<include>**/*.css</include>
|
|
|
|
</includes>
|
2014-04-11 11:33:48 +02:00
|
|
|
</resource>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
2014-04-28 17:26:26 +02:00
|
|
|
<filtering>false</filtering>
|
2014-04-11 11:33:48 +02:00
|
|
|
</resource>
|
|
|
|
</resources>
|
2014-04-11 14:46:00 +02:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2014-04-15 01:29:34 +02:00
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.1</version>
|
2014-04-11 14:46:00 +02:00
|
|
|
<configuration>
|
2014-04-15 01:29:34 +02:00
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
2014-04-11 14:46:00 +02:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
2014-04-11 11:33:48 +02:00
|
|
|
</build>
|
|
|
|
|
2014-04-28 17:26:26 +02:00
|
|
|
|
2014-04-11 11:33:48 +02:00
|
|
|
<dependencies>
|
2014-04-15 01:29:34 +02:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google</groupId>
|
|
|
|
<artifactId>bitcoinj</artifactId>
|
|
|
|
<version>0.12-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
|
2014-04-11 11:33:48 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>4.11</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2014-05-10 18:31:55 +02:00
|
|
|
<!--
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-jdk14</artifactId>
|
|
|
|
<version>1.7.7</version>
|
|
|
|
</dependency>
|
|
|
|
-->
|
2014-04-28 17:26:26 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
<version>1.7.7</version>
|
2014-04-11 11:33:48 +02:00
|
|
|
</dependency>
|
|
|
|
|
2014-04-28 17:26:26 +02:00
|
|
|
|
2014-04-11 11:33:48 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
<artifactId>logback-classic</artifactId>
|
2014-04-28 17:26:26 +02:00
|
|
|
<version>1.1.2</version>
|
2014-04-11 11:33:48 +02:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.inject</groupId>
|
|
|
|
<artifactId>guice</artifactId>
|
|
|
|
<version>3.0</version>
|
2014-04-11 14:46:00 +02:00
|
|
|
<classifier>no_aop</classifier>
|
2014-04-11 11:33:48 +02:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
2014-04-15 01:29:34 +02:00
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
<version>16.0.1</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.aquafx-project</groupId>
|
|
|
|
<artifactId>aquafx</artifactId>
|
|
|
|
<version>0.1</version>
|
2014-04-11 11:33:48 +02:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
<artifactId>gson</artifactId>
|
|
|
|
<version>2.2.4</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.controlsfx</groupId>
|
|
|
|
<artifactId>controlsfx</artifactId>
|
|
|
|
<version>8.0.5</version>
|
|
|
|
</dependency>
|
|
|
|
|
2014-04-15 01:29:34 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>de.jensd</groupId>
|
|
|
|
<artifactId>fontawesomefx</artifactId>
|
|
|
|
<version>8.0.0</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.glxn</groupId>
|
|
|
|
<artifactId>qrgen</artifactId>
|
|
|
|
<version>1.3</version>
|
|
|
|
</dependency>
|
|
|
|
|
2014-05-10 18:31:55 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.tomp2p</groupId>
|
|
|
|
<artifactId>TomP2P</artifactId>
|
|
|
|
<version>4.4</version>
|
|
|
|
</dependency>
|
|
|
|
|
2014-04-11 11:33:48 +02:00
|
|
|
</dependencies>
|
|
|
|
|
2014-04-28 17:26:26 +02:00
|
|
|
<reporting>
|
|
|
|
<plugins>
|
|
|
|
<!-- Generate cross-referenced HTML source code listing -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jxr-plugin</artifactId>
|
|
|
|
<version>2.1</version>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</reporting>
|
|
|
|
|
2014-04-11 11:33:48 +02:00
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
|
|
|
</project>
|