mvn io.quarkus:quarkus-maven-plugin:1.9.2.Final:create
Make sure to have the Quarkus Extension installed.
Open the command palette and search for "Quarkus ..."
Browse to the online project bootstrapper
.
├── mvnw
├── mvnw.cmd
├── pom.xml
├── README.md
└── src
├── main
│ ├── docker
│ │ ├── Dockerfile.jvm
│ │ └── Dockerfile.native
│ ├── java
│ │ └── org
│ │ └── sebi
│ │ └── HelloResource.java
│ └── resources
│ ├── application.properties
│ └── META-INF
│ └── resources
│ └── index.html
└── test
└── java
└── org
└── sebi
├── HelloResourceTest.java
└── NativeHelloResourceIT.java
mvn quarkus:dev
Try updating the code while the project is running and see what happens.
mvn clean package
mvn clean package -Pnative