Skip to content

Commit

Permalink
Merge pull request #1833 from gsmet/ignore-vertx-json-types
Browse files Browse the repository at this point in the history
Do not try to mark Vert-x JSON types for reflection
  • Loading branch information
Sanne committed Apr 3, 2019
2 parents 7bb7273 + 90e60d5 commit 8057bf5
Showing 1 changed file with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -123,9 +123,14 @@ public class ResteasyScanningProcessor {
// javax.json
DotName.createSimple("javax.json.JsonObject"),
DotName.createSimple("javax.json.JsonArray"),

// JAX-RS
DotName.createSimple(Response.class.getName()),
DotName.createSimple(AsyncResponse.class.getName())));
DotName.createSimple(AsyncResponse.class.getName()),

// Vert-x
DotName.createSimple("io.vertx.core.json.JsonArray"),
DotName.createSimple("io.vertx.core.json.JsonObject")));

private static final DotName[] METHOD_ANNOTATIONS = {
GET,
Expand Down Expand Up @@ -420,7 +425,7 @@ void setupFilter(BuildProducer<ResteasyJaxrsProviderBuildItem> providers) {

/**
* Indicates that JAXB support should be enabled
*
*
* @return
*/
@BuildStep
Expand Down

0 comments on commit 8057bf5

Please sign in to comment.