HDES
Local Development Environment
Prerequisites Java 11+, Maven 3.6.2+
It's recommended to install them using SDKMAN
curl -s "https://get.sdkman.io" | bash
source "$HOME/.sdkman/bin/sdkman-init.sh"
sdk version
sdk install java 11.0.7-zulu
sdk install maven
Creating and Running Maven Project
mvn archetype:generate \
-DarchetypeGroupId=io.resys.hdes \
-DarchetypeArtifactId=hdes-maven-archetype \
-DgroupId=io.resys.test \
-DartifactId=test-project
cd test-project
mvn clean compile quarkus:dev