novitski / bitcoinj

Automatically exported from code.google.com/p/bitcoinj
Apache License 2.0
0 stars 0 forks source link

Foreign libraries required by bitcoinj #471

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What more foreign libraries is needed for bitcoinj v7.3.

I resolved the slf4j-api.jar and the 6+ spongycastle jars (don't know if they 
all required) but now getting this:-
java.lang.ClassNotFoundException: com.google.common.base.Preconditions

The maven pom dont show.

Original issue reported on code.google.com by paracelc...@gmail.com on 18 Oct 2013 at 7:56

GoogleCodeExporter commented 9 years ago
That's Guava and if you look at the pom.xml:

       <dependency>
            <groupId>com.google.guava</groupId>
            <artifactId>guava</artifactId>
            <version>13.0.1</version>
        </dependency>

This kind of support question is better asked on the bitcoinj google group.

Original comment by andreas....@gmail.com on 18 Oct 2013 at 8:05

GoogleCodeExporter commented 9 years ago
btw. Maven manages dependencies for you. For example, if you use "mvn 
dependency:copy-dependencies" it copies all required artifacts to 
target/dependency.

Original comment by andreas....@gmail.com on 18 Oct 2013 at 8:08