A Java library for working with BLS Signatures for Dash
The dashj-bls library is a Java implementation of the Dash BLS library.
- Java 11
- Maven 3+ - for building the project
To get started, it is best to have the latest JDK and Maven installed. The HEAD of the master branch contains the latest development code and various production releases are provided on feature branches.
To initialize the repo after cloning it:
git submodule update --init --recursive
git apply catch_changes.patch
To perform a full build use (this includes the dashjbls shared library):
mvn clean package -Dmaven.javadoc.skip=true
To perform a full build without building the bls shared library and skip the test:
mvn clean package -Pno-build-bls -DskipTests -Dmaven.javadoc.skip=true
To perform a full build and install it in the local maven repository:
mvn clean install
You can also run
mvn site:site
to generate a website with useful information like JavaDocs.
To publish to maven central:
mvn deploy -DskipTests -Dmaven.javadoc.skip=true
The outputs are under the target directory.
To deploy to the maven repository:
mvn clean deploy -DskipTests -P release
Alternatively, just import the project using your IDE. IntelliJ has Maven integration built-in and has a free Community Edition. Simply use File | Import Project and locate the pom.xml in the root of the cloned project source tree.
The dashjbls library must still be built with mvn.