mirror of
https://github.com/Qortal/altcoinj.git
synced 2025-01-31 15:22:16 +00:00
58 lines
1.9 KiB
XML
58 lines
1.9 KiB
XML
<?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>
|
|
|
|
<groupId>org.bitcoinj</groupId>
|
|
<artifactId>wallettemplate</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.1</version>
|
|
<configuration>
|
|
<source>1.8</source>
|
|
<target>1.8</target>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.google</groupId>
|
|
<artifactId>bitcoinj</artifactId>
|
|
<version>0.12-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-jdk14</artifactId>
|
|
<version>1.7.6</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.guava</groupId>
|
|
<artifactId>guava</artifactId>
|
|
<version>13.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.aquafx-project</groupId>
|
|
<artifactId>aquafx</artifactId>
|
|
<version>0.1</version>
|
|
</dependency>
|
|
<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>
|
|
</dependencies>
|
|
</project> |