2013-09-15 20:08:19 +00: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-11-20 15:05:51 +00:00
|
|
|
<parent>
|
2014-12-23 17:09:55 +00:00
|
|
|
<groupId>com.dogecoin</groupId>
|
|
|
|
<artifactId>dogecoinj-parent</artifactId>
|
2014-11-20 15:05:51 +00:00
|
|
|
<version>0.13-SNAPSHOT</version>
|
|
|
|
</parent>
|
2013-09-15 20:08:19 +00:00
|
|
|
|
|
|
|
<artifactId>wallettemplate</artifactId>
|
2014-11-20 15:05:51 +00:00
|
|
|
|
2014-12-23 17:09:55 +00:00
|
|
|
<name>dogecoinj Wallet-Template</name>
|
2013-09-15 20:08:19 +00:00
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
2014-09-23 12:40:35 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<!-- Create the bundled JAR, it's easier for some people -->
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<minimizeJar>false</minimizeJar>
|
|
|
|
<filters>
|
|
|
|
<filter>
|
|
|
|
<!-- exclude signatures, the bundling process breaks them for some reason -->
|
|
|
|
<artifact>*:*</artifact>
|
|
|
|
<excludes>
|
|
|
|
<exclude>META-INF/*.SF</exclude>
|
|
|
|
<exclude>META-INF/*.DSA</exclude>
|
|
|
|
<exclude>META-INF/*.RSA</exclude>
|
|
|
|
</excludes>
|
|
|
|
</filter>
|
|
|
|
</filters>
|
|
|
|
<shadedArtifactAttached>true</shadedArtifactAttached>
|
|
|
|
<shadedClassifierName>bundled</shadedClassifierName>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2013-09-15 20:08:19 +00:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2014-10-18 17:16:39 +00:00
|
|
|
<groupId>com.dogecoin</groupId>
|
|
|
|
<artifactId>dogecoinj-core</artifactId>
|
2014-11-20 15:05:51 +00:00
|
|
|
<version>${project.parent.version}</version>
|
2013-09-15 20:08:19 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
2014-04-06 13:54:17 +00:00
|
|
|
<version>16.0.1</version>
|
2013-09-15 20:08:19 +00:00
|
|
|
</dependency>
|
2014-07-10 22:27:00 +00:00
|
|
|
<!-- Native Mac skin (there's also AeroFX, MetroFX, etc)
|
2013-09-22 13:01:40 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.aquafx-project</groupId>
|
|
|
|
<artifactId>aquafx</artifactId>
|
|
|
|
<version>0.1</version>
|
|
|
|
</dependency>
|
2014-07-10 22:27:00 +00:00
|
|
|
-->
|
2014-07-13 20:28:44 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.fxmisc.easybind</groupId>
|
|
|
|
<artifactId>easybind</artifactId>
|
2014-07-14 11:36:39 +00:00
|
|
|
<version>1.0.2</version>
|
2014-07-13 20:28:44 +00:00
|
|
|
</dependency>
|
2013-10-26 00:28:44 +00: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>
|
2013-09-15 20:08:19 +00:00
|
|
|
</dependencies>
|
|
|
|
</project>
|