Maybe this question seems to be a cliché but it bothers me somehow. What it difference in using maven scope compile and provided when artifact is builded as a JAR? If it was WAR, then I understand - artifact would be attached or not to WEB-INF/lib. But in case of the JAR it doesn't matter - dependencies aren't attached. They have to be on classpath when their scope is compile or provided. I know that provided dependencies aren't transitive - but is it only one difference?

link|improve this question

79% accept rate
feedback

1 Answer

up vote 4 down vote accepted

From the Maven Doc:

  • compile

This is the default scope, used if none is specified. Compile dependencies are available in all classpaths of a project. Furthermore, those dependencies are propagated to dependent projects.

  • provided

This is much like compile, but indicates you expect the JDK or a container to provide the dependency at runtime. For example, when building a web application for the Java Enterprise Edition, you would set the dependency on the Servlet API and related Java EE APIs to scope provided because the web container provides those classes. This scope is only available on the compilation and test classpath, and is not transitive.

Recap:

  • dependencies are not transitive (as you mentioned)
  • provided scope is only available on the compilation and test classpath, whereas compile scope is available in all classpaths.
  • provided dependencies are not packaged
link|improve this answer
Yes, I know. But I ponder about difference in the scopes in JAR packaging context. Maven doc doesn't mention about it. I use Maven for a while, but I've just already asked myself about it :) So it seems that in JAR packaging context, there isn't any difference between compile and provided (except dependency transition). Am I right? – emstol Jul 11 '11 at 8:02
And "classpath-availability", yes. – cularis Jul 11 '11 at 8:19
Thank you and greets. – emstol Jul 11 '11 at 8:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.