-
Notifications
You must be signed in to change notification settings - Fork 322
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add possibility to include all maven artifact dependencies to deb file #196
Comments
@Don4ik Have you looked into the maven shade plugin? (highly recommended) |
Thank you for fast reply. Currently we use shade plugin for it. But it is a bit slow. |
@Don4ik There is no easy/clean way of doing that with the current It certainly something that could be added - but build speed is not a very good argument for the additional overhead of maintaining this feature. I would personally recommend to keep using the the shade plugin. It comes with so many benefits I don't know why anyone would want to ship a product not using it. |
We use assembly plugin to copy dependencies to a folder (check dependencySet) option We then add that folder as one of the mapper elements of jdeb plugin |
We use slightly different approach now. We use maven dependency plugin to put all dependencies in a folder. It seems like it is the fastest way. |
I guess one could look how the dependency plugin gets to the dependencies and turn it into a jdeb |
Please, add possibility to include all maven artifact dependencies to deb file
The text was updated successfully, but these errors were encountered: