POM changes and refactorings from Gary.

This commit is contained in:
Mike Hearn
2012-03-16 13:20:50 +01:00
parent 6e162057c1
commit a119286b29
4 changed files with 128 additions and 44 deletions

View File

@@ -18,20 +18,25 @@
<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">
<parent>
<artifactId>bitcoinj</artifactId>
<groupId>com.google</groupId>
<version>0.5-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.google</groupId>
<artifactId>bitcoinj-parent</artifactId>
<version>0.5-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>bitcoinj-tools</artifactId>
<groupId>com.google</groupId>
<artifactId>bitcoinj-tools</artifactId>
<version>0.5-SNAPSHOT</version>
<name>BitCoinJ Tools</name>
<description>A collection of useful tools that use the BitCoinJ library to perform wallet operations</description>
<dependencies>
<dependency>
<groupId>com.google</groupId>
<artifactId>bitcoinj-core</artifactId>
<version>${project.parent.version}</version>
<groupId>com.google</groupId>
<artifactId>bitcoinj</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>net.sf.jopt-simple</groupId>
@@ -44,4 +49,5 @@
<version>1.6.4</version>
</dependency>
</dependencies>
</project>