Skip to content

Instantly share code, notes, and snippets.

@joschi
joschi / dw-addons.md
Last active August 29, 2015 14:03
Dropwizard 3rd Party Addons

Please refer to the official Dropwizard Module Directory for an up-to-date list.

Dropwizard 0.7.x

Name Description License Maven Central
dropwizard-guice Support for Google Guice Apache 2.0 http://mvnrepository.com/artifact/com.hubspot.dropwizard/dropwizard-guice
dropwizard-spring Spring integration for Dropwizard Apache 2.0 http://mvnrepository.com/artifact/com.hmsonline/dropwizard-spring
dropwizard-redirect-bundle A simple bundle for Dropwizard that allows for HTTP redirects http://mvnrepository.com/artifact/com.bazaarvoice.dropwizard/dropwizard-redirect-bundle
@jasonrudolph
jasonrudolph / git-branches-by-commit-date.sh
Created February 12, 2012 20:40
List remote Git branches and the last commit date for each branch. Sort by most recent commit date.
# Credit http://stackoverflow.com/a/2514279
for branch in `git branch -r | grep -v HEAD`;do echo -e `git show --format="%ci %cr" $branch | head -n 1` \\t$branch; done | sort -r