-1

Impact of exclusion in the context of jar packaging(simple/fat jar using shade plugin). What i mean here, how can it be verified by extracting the jar.

Madhav Kumar Jha
  • 353
  • 1
  • 2
  • 13

1 Answers1

1

When a dependency is excluded, it is removed from the dependency tree at that point. You can check this with mvn dependency:tree. It might still come in through other ways (e.g. as transitive dependency of some other dependency). You can check that with mvn dependency:list.

J Fabian Meier
  • 33,516
  • 10
  • 64
  • 142