Prerequisites

Everything you need to use Helidon is listed here.

Prerequisites

Helidon requires Java 8 or Java 11 and Maven. You need Docker if you want to build and deploy Docker containers. If you want to deploy to Kubernetes, you need kubectl and a Kubernetes cluster (you can install one on your desktop).

Verify Prerequisites
java -version
mvn --version
docker --version
kubectl version --short
Copied

Setting JAVA_HOME

Setting JAVA_HOME
# On Mac
export JAVA_HOME=`/usr/libexec/java_home -v 1.8`

# On Linux
# Use the appropriate path to your JDK
export JAVA_HOME=/usr/lib/jvm/jdk-8
Copied

Try the Quickstart Examples

Now you are ready to try the Quickstart Examples.