/quarkus-21173

This is a small reproducer project for Quarkus issue #21173

Primary LanguageJavaMIT LicenseMIT

Reproducer for Quarkus issue 21173

This is a small reproducer project for Quarkus issue #21173.

Reproduce manually

Steps

Run the application in dev mode using:

./mvnw compile quarkus:dev

Download and open (or display in browser) http://localhost:8080/q/openapi

Expected

  • The operation in path /adress carry the Address Resource tag.
  • The operation in path /person carry the Person Resource tag.

Actual

All operations are tagged with the same tag (it does not seem to be deterministic which one).

Unit Test

There is a dedicated unit test for this, which can be executed using:

./mvnw test -Dtest=AddressResourceTest#testTagInOpenApi