Axon JEE Integration

Is there a good tutorial/example/blueprint on how to integrate Axon with Wildfly or Quarkus?

Regards,
Thomas

You could have a look at my showcase-quarkus-eventsourcing.
This example shows, how microprofile on quarkus can be used in conjunction with axon.
Axon is held behind a boundary. This makes domain code less coupled to axon and should make it easier to stay up to date with axon.
It also runs in native mode. This is a bit messy right now, since I needed to put a lot of full qualified class names into Graal configurations.

Thank you very much!