3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-02-07 14:54:15 +00:00

Use JDK logging in the examples module.

This commit is contained in:
Mike Hearn 2012-08-30 23:14:00 +02:00
parent 5c8bfbda8b
commit dee14b7109

View File

@ -28,8 +28,8 @@
<groupId>com.google</groupId> <groupId>com.google</groupId>
<artifactId>bitcoinj-examples</artifactId> <artifactId>bitcoinj-examples</artifactId>
<name>BitCoinJ Examples</name> <name>bitcoinj Examples</name>
<description>A collection of examples using the BitCoinJ library</description> <description>A collection of examples using the bitcoinj library</description>
<dependencies> <dependencies>
<dependency> <dependency>
@ -37,5 +37,10 @@
<artifactId>bitcoinj</artifactId> <artifactId>bitcoinj</artifactId>
<version>${project.parent.version}</version> <version>${project.parent.version}</version>
</dependency> </dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
<version>1.6.4</version>
</dependency>
</dependencies> </dependencies>
</project> </project>