Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Different group id for dropwizard (io.dropwizard and com.yammer.dropwizard)

Why dropwizard has two different groupId.
io.dropwizard and
com.yammer.dropwizard

when you will see in git pom file. it has io.dropwizard https://github.com/dropwizard/dropwizard/blob/master/pom.xml

But in its site, it is suggesting to use com.yammer.dropwizard.
http://www.dropwizard.io/getting-started/

I am confused. Please help.

like image 342
Gaurav Avatar asked Mar 06 '14 06:03

Gaurav


1 Answers

New version of dropwizard(from v0.7.0-SNAPSHOT) is under io.dropwizard

Previous versions(upto v0.6.2) were under com.yammer.dropwizard

release notes can be found here

There is some important changes to be noted, if you have used 0.6.2 previously.

Renamed Service to Application.

Renamed DatabaseConfiguration to DataSourceFactory, and ConfigurationStrategy to DatabaseConfiguration.

like image 104
Manu Viswam Avatar answered Nov 05 '22 07:11

Manu Viswam