I pushed gwizard 0.5 to maven central and updated the example. This has the com.voodoodyne.gwizard -> org.gwizard package rename.
There's a problem with the code right now though. Maven seems to be doing something retarded with transitive dependencies - pulling in the wrong version of guava. This causes the example to fail with NoSuchMethodErrors.
gwizard-parent specifies version 18 of guava in dependencyManagement. From everything I have read, this means 18 should override any transitive inclusion of guava.
However, the example app is pulling in version 16 through this chain:
[INFO] org.gwizard:gwizard-example:jar:1.0-SNAPSHOT
[INFO] +- org.gwizard:gwizard-config:jar:0.5:compile
[INFO] | +- com.google.inject:guice:jar:4.0-beta5:compile
[INFO] | | \- com.google.guava:guava:jar:16.0.1:compile
This makes no sense to me. Anyone have any ideas?
Jeff