How to create a Quarkus application executable on Windows?
I have created a first Quarkus app from its initializer https://code.quarkus.io/
I have been able to do correctly all the steps indicated in the README.md except the creation of an native executable.
To be more precise, I have been able to create it, but I have not been able to run it, because it seems that the executable that is created is for Linux:
<<The produced executable will be a 64-bit Linux executable, so depending on your operating system it may no longer be runnable. However, it’s not an issue as we are going to copy it to a Docker container. Note that in this case the build itself runs in a Docker container too, so you don’t need to have GraalVM installed locally.>>
Running the application in dev mode:
mvnw compile quarkus:dev
Packaging and running the application as a jar:
mvnw package java -jar target/quarkus-app/quarkus-run.jar
Packaging and running the application as an uber-jar:
mvnw package -Dquarkus.package.type=uber-jar java -jar target/*-runner.jar
Creating a native executable in a container: (because I don't have GraalVM)
mvnw package -Pnative -Dquarkus.native.container-build=true