How to exclude all dependencies of a dependency in maven
If you are using some library but want to exclude all the dependencies that this library may bring in with itself. Maven provides an easy way to exclude all the libraries.
If you are using some library but want to exclude all the dependencies that this library may bring in with itself. Maven provides an easy way to exclude all the libraries.
Multi module projects in maven are a great thing. But have you ever faced issues with multi module projects. With lots of smaller services and 1 parent for all the services. Some services at any point may need different dependencies or different versions of same dependencies. So it be better have <optional> on dependencies that … Read more