Contents:
- Linux (Debian, Ubuntu):
sudo apt-get install openjdk-8-jdk
- Windows: download then unzip JDK (8 ou +) from Oracle web site
-
Linux: follow this instructions (anglais).
-
After install, check that the file
libsodium.so
exists inside directory/usr/local/lib
or/opt/local/lib
. -
If not exists, but at another location, please create a symbolic link under directory
/usr/local/lib
or/opt/local/lib
.
-
-
Windows: Nothing to do (the lib
sodium.dll
is already include in the included libraryduniter4j
);
Install Apache Maven 3:
- Linux (Debian, Ubuntu):
sudo apt-get install maven
-
Windows : download here (version 3.x) then install using this instructions.
-
Install Maven 3:
sudo apt-get install maven
- Get the source code, then compile using Maven:
git clone [email protected]:duniter-gchange/gchange-pod.git
cd gchange-pod
git submodule init
git submodule sync
git submodule update
mvn install -DskipTests
- Then, package all binaries:
mvn install -DskipTests -DperformRelease
You will need to have access to project site repository.
To deploy binaries:
mvn release:prepare
mvn release:perform
To deploy the web site:
mvn site-deploy -DperformRelease