does anybody know how to exclude specific lib from packiging to .war
I have a following dependency:
<dependency>
<groupId>com.intel.mtwilson</groupId>
<artifactId>mtwilson-client</artifactId>
<version>2.0.3</version>
</dependency>
mtwilson-client-2.0.3.jar in WEB-INF then contains a library (javax servlet), which causes some troubles with application server. Is there a way how to exclude this specific lib from packaging? I can not exclude whole jar by setting provided tag.
Thank you in advance