Skip to content

Build from source

Alessandro Luccaroni edited this page Nov 4, 2019 · 3 revisions

Ensure you have at least JDK11 and Maven 3.6.X

$JAVA_HOME/bin/java -version
mvn -version

Clone from Github

git clone https://github.com/diennea/herddb/
git remote show origin
git branch

If you want to build a branch other than Master (the default) checkout that specific branc

git checkout -b release/0.11 origin/release/0.11
git branch

Perform maven clean install with the -DskipTests option

mvn clean install -DskipTests

You will find the build files under herddb-services/target/ (and, also, inside the default maven repository .m2)

Clone this wiki locally