maven-enforcer-plugin to ban a transitive provided dependency

2013-04-05 Thread dsilve
this message in context: http://maven.40175.n5.nabble.com/maven-enforcer-plugin-to-ban-a-transitive-provided-dependency-tp5752733.html Sent from the Maven - Users mailing list archive at Nabble.com. - To unsubscribe, e-mail: users

Re: maven-enforcer-plugin to ban a transitive provided dependency

2013-04-05 Thread Stephen Connolly
this message in context: http://maven.40175.n5.nabble.com/maven-enforcer-plugin-to-ban-a-transitive-provided-dependency-tp5752733.html Sent from the Maven - Users mailing list archive at Nabble.com. - To unsubscribe, e-mail: users

Re: maven-enforcer-plugin to ban a transitive provided dependency

2013-04-05 Thread dsilve
Thank you Stephen! Does anybody knows if there is already a plugin able to this? David PS: Guys don't publish unrelated posts on this thread. -- View this message in context: http://maven.40175.n5.nabble.com/maven-enforcer-plugin-to-ban-a-transitive-provided-dependency-tp5752733p5752745

transitive provided dependency

2007-06-04 Thread nicolas de loof
Hello, My POM declares a dependency on a library that itself has dependency on JEE apis (jca, jms) declared as provided. Those dependencies are not set in my classpath by the eclipse plugin, neither get include during compile. According to

Re: transitive provided dependency

2007-06-04 Thread Jo Vandermeeren
Hi Nicolas, Apparently you have indeed missed a bit ;) The URL you pasted mentions: *provided* - this is much like compile, but indicates you expect the JDK or a container to provide it. It is only available on the compilation classpath, and is not transitive. This means that they were needed

Re: transitive provided dependency

2007-06-04 Thread nicolas de loof
That right, I don't want those javax.* jars to be bundled in my war. according to maven doc : http://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html, It is expected to be transitive anyway. 2007/6/4, Jo Vandermeeren [EMAIL PROTECTED]: Hi Nicolas, Apparently