1000kit maven plugin to generated documentation for quarkus project.
Create a documentation in your maven project.
<profile>
<id>docs</id>
<build>
<plugins>
<plugin>
<groupId>org.tkit.maven</groupId>
<artifactId>tkit-docs-quarkus-plugin</artifactId>
<version>latest-version</version>
<executions>
<execution>
<id>default</id>
<goals>
<goal>docs</goal>
</goals>
<phase>prepare-package</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>