How to depend on bitcoinj with Maven using projects

Maven is a plugin based build system from Apache. It supports various other features, like automatically creating a website for your project and resolving dependencies.

If your project uses Maven for its build, you can depend on bitcoinj by adding the following snippet to your pom.xml file in the:

  <dependencies>
    <dependency>
      <groupId>org.bitcoinj</groupId>
      <artifactId>bitcoinj-core</artifactId>
      <version>0.16.2</version>
      <scope>compile</scope>
    </dependency>
  </dependencies>

To get the source you can also use git and check out your own copy:

git clone https://github.com/bitcoinj/bitcoinj.git
cd bitcoinj
git fetch --all
git checkout v0.16.2
mvn install

This will give you v0.16.2. If PGP is your thing, you can run git tag -v v0.16.2 to check Andreas Schildbach’s signature of the release.