I've crafted my first quarkus extension, and integrated Wicket into the quarkiverse.
This is a 1.0 version but rather consider it an alpha, as it hasn't been used in anger nor reality. https://github.com/dashorst/quarkus-wicket You can try it out by checking out the project, and run `mvn install` Then you can generate a quarkus application with the quarkus commandline tool: quarkus create app --maven --java=21 --code --extensions=io.quarkiverse.wicket:quarkus-wicket:999-SNAPSHOT groupid:artifactid where you substitute the groupid and artifactid with your own things. Then it should be cd artifactid ; quarkus dev Martijn