We did some work at Bloom to get the projects up to snuff. Those changed have been integrated back into the trunk for the respective projects:
We changed both projects into Gradle builds and fixed the dependency issues that were occuring. You should be able to pull those repos and do a 'gradle install' on each or deploy them to your own repository.
At Bloom we are using these version along with the Gradle Shadow plugin to build the necessary JSON files for Swagger and include them in our jars.
Additionally, today, I became aware of the Swagger-JAXRS project which provides annotations for dynamically generating the swagger interface. Requirement is to be running Dropwizard 0.6.1 and do the following:
1. Add the swagger asset bundle to the Dropwizard bootstrap
2. Add the ApiListingResourceJSON to the Dropwizard environment
3. Annotate your resources with @Api (class), and @ApiOperation (methods)
Here are some links for doing the annotation style: