You can run your application in dev mode that enables live coding using:
./mvnw compile quarkus:dev
Or:
./gradlew quarkusDev
Generate the slide show by calling the asciidoctor:process-asciidoc
Maven goal:
./mvnw asciidoctor:process-asciidoc
You can find the HTML file at target/generated-docs/SLIDES.html
.
The application can be packaged using:
./mvnw package
Or (Gradle):
./gradlew build
You can create a native executable using:
./mvnw package -Pnative -Dquarkus.native.container-build=true
Or (Gradle):
./gradlew build -Dquarkus.package.type=native -Dquarkus.native.container-build=true