This is the Universa network codebase (Java core), containing the node, the console client (uniclient) and the associated subsystems.
To build, you need to have the following installed:
To access the Github repository, you may need some git client. The further examples assume you are using the command-line git client. To properly clone it from Github, you may need to create an SSH key pair, to register on Github site and to add your SSH public key on Github.
(Tested with Ubuntu 16.04 LTS, Debian Linux 9.3).
To build Universa, you need to setup Java (JDK) and Gradle (the Java build tool used in Universa).
sudo -s
echo "deb http://ppa.launchpad.net/webupd8team/java/ubuntu xenial main" | tee /etc/apt/sources.list.d/webupd8team-java.list
echo "deb-src http://ppa.launchpad.net/webupd8team/java/ubuntu xenial main" | tee -a /etc/apt/sources.list.d/webupd8team-java.list
apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys EEA14886
apt-get update
apt-get install oracle-java8-installer oracle-java8-set-default binfmt-support
exit
First, install java-package (the tool that will help you to pack the Oracle JDK tarball into the .deb package).
sudo apt-get install -y java-package
Visit the Oracle JDK 8 site and download the tarball (.tar.gz) package for Linux x64 (assuming you run it on one). You will get a file like jdk-8u152-linux-x64.tar.gz (the title may vary, depending on the version).
Using the java-package framework, convert the tarball into the .deb package (replace the jdk-8u152-linux-x64.tar.gz with your specific name, if needed).
make-jpkg jdk-8u152-linux-x64.tar.gz
It will create a .deb package named accordingly. Install it (replace the oracle-java8-jdk_8u152_amd64.deb with your specific name, if needed).
sudo dpkg -i oracle-java8-jdk_8u152_amd64.deb
You may also need to configure your future Gradle environment to refer to the just-installed JDK:
mkdir -p ~/.gradle
cat <<EOT > ~/.gradle/gradle.properties
org.gradle.java.home=/usr/lib/jvm/oracle-java8-jdk-amd64
EOT
sudo apt-get install -y gradle
Create a directory where the project will be placed, and, inside it, run the following commands:
git clone git@github.com:UniversaBlockchain/universa.git ./
git submodule init; git submodule update
Then you can build it.
Universa node may be built either in multi-jar configuration (suggested),..
gradle :universa_core:buildMultiJar -x test
... or as a “fat jar”:
gradle :universa_core:fatJar
Uniclient (CLI interface to Universa) is built as “fat jar” only:
gradle :uniclient:fatJar
To successfully compile it, you may need GNU Multiple Precision Arithmetic Library (“libgmp”) installed. See the details specific to your operating system regarding how it can be installed.
After building launch Universa components.
Launching the node, built in “multi-jar” configuration:
java -jar universa_core/build/output/uninode.jar
Launching the node, built in “fat jar” configuration:
java -jar universa_core/build/libs/uninode-all.jar
Launching uniclient:
java -jar uniclient/build/libs/uniclient.jar
To build Universa under Windows, you need to install the Oracle JDK and Gradle from the binary distributions, and use them similarly. You will need to pass an extra -Dfile.encoding=utf-8 option to gradle; so the build commands
gradle :universa_core:jar
gradle :uniclient:fatJar
become
gradle -Dfile.encoding=utf-8 :universa_core:fatJar
gradle -Dfile.encoding=utf-8 :uniclient:fatJar
