For a sample class
@Api(value = "/api1")
public class ApiImpl {
@ApiParam(value = "defines originator of request to API")
@QueryParam("sourceId")
private String sourceId;
...
}
JaxrsReader fails to include sourceId into generated swagger object.
In io.swagger.jaxrs.Reader, on which this class seems to be based, there lot of additional parsing code, including parsing of field-level params (via call to ReaderUtils#collectFieldParameters).
Would be good idea to re-use io.swagger version in your plugin?