Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 784 Bytes

README.md

File metadata and controls

31 lines (22 loc) · 784 Bytes

License

Zoe CMS

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.github.jocelynmutso             \
  -DarchetypeArtifactId=zoe-maven-archetype             \
 // -DgroupId=io.placeholder.test                       \
  -DartifactId=test-project

cd test-project

mvn clean compile quarkus:dev