java - Maven Ban Transitive Dependencies in parent pom to include in child application -
i have exclusion in parent pom jcifs jar. not want change parent pom affects many applications, possible me include jar in child application parent pom added dependency. if approach
<bantransitivedependencies>                   <excludes>                     <exclude>org.x.y:jcifs</exclude>                     <exclude>*:jcifs</exclude>                   </excludes> </bantransitivedependencies>       
 
Comments
Post a Comment