Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to package Dropwizard project without shade plugin?

In every site I can find only examples, where Dropwizard project is built using Shade pluign Is there any way to build Dropwizard project without shade plugin. If so please provide some sample pom.xml.

like image 407
Sandy T Avatar asked Nov 13 '22 11:11

Sandy T


1 Answers

If you don't include the shade plugin in your pom, Dropwizard will build correctly and Maven will give you a jar containing all of your project files but none of your dependencies.

like image 69
Michael Fairley Avatar answered Nov 15 '22 05:11

Michael Fairley