Hi, I am building a WAR, in which I would like to remove some JAR's that come up transitively. I've tried to configure my war-plugin like this:
<plugin> <artifactId>maven-war-plugin</artifactId> <configuration> <archive> <compress>false</compress> <manifest> <addClasspath>true</addClasspath> </manifest> </archive> <dependentWarExcludes>commons-logging</dependentWarExcludes> </configuration> </plugin> But this doesn't seem to work. Could anybody tell me how to exclude commons-logging from the WAR? And also, could someone explain what this 'dependentWarExcludes' does?? Thanks, Roland --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]