3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-01-30 14:52:16 +00:00

Wallet-template is now a proper sub-project. This reduces the risk for breaking the wallet-template build.

This commit is contained in:
Andreas Schildbach 2014-11-20 16:05:51 +01:00
parent 9286b25f9d
commit 2a71858c76
2 changed files with 9 additions and 17 deletions

View File

@ -11,6 +11,7 @@
<module>core</module>
<module>examples</module>
<module>tools</module>
<module>wallettemplate</module>
</modules>
<parent>

View File

@ -3,22 +3,18 @@
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>
<groupId>org.bitcoinj</groupId>
<artifactId>bitcoinj-parent</artifactId>
<version>0.13-SNAPSHOT</version>
</parent>
<groupId>org.bitcoinj</groupId>
<artifactId>wallettemplate</artifactId>
<version>0.13-SNAPSHOT</version>
<name>bitcoinj Wallet-Template</name>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
@ -56,12 +52,7 @@
<dependency>
<groupId>org.bitcoinj</groupId>
<artifactId>bitcoinj-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
<version>1.7.6</version>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>