Difference between maven scope compile and provided for JAR packaging

后端 未结 7 1780
忘掉有多难
忘掉有多难 2020-11-22 14:44

What is the difference between the maven scope compile and provided when artifact is built as a JAR? If it was WAR, I\'d understand - the artifact

相关标签:
7条回答
  • 2020-11-22 15:11

    When you set maven scope as provided, it means that when the plugin runs, the actual dependencies version used will depend on the version of Apache Maven you have installed.

    0 讨论(0)
  • 2020-11-22 15:22

    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
    0 讨论(0)
  • 2020-11-22 15:28
    • compile

    Make available into class path, don't add this dependency into final jar if it is normal jar; but add this jar into jar if final jar is a single jar (for example, executable jar)

    • provided

    Dependency will be available at run time environment so don't add this dependency in any case; even not in single jar (i.e. executable jar etc)

    0 讨论(0)
  • 2020-11-22 15:29

    For a jar file, the difference is in the classpath listed in the MANIFEST.MF file included in the jar if addClassPath is set to true in the maven-jar-plugin configuration. 'compile' dependencies will appear in the manifest, 'provided' dependencies won't.

    One of my pet peeves is that these two words should have the same tense. Either compiled and provided, or compile and provide.

    0 讨论(0)
  • 2020-11-22 15:32

    If you're planning to generate a single JAR file with all of its dependencies (the typical xxxx-all.jar), then provided scope matters, because the classes inside this scope won't be package in the resulting JAR.

    See maven-assembly-plugin for more information

    0 讨论(0)
  • 2020-11-22 15:33

    Compile means that you need the JAR for compiling and running the app. For a web application, as an example, the JAR will be placed in the WEB-INF/lib directory.

    Provided means that you need the JAR for compiling, but at run time there is already a JAR provided by the environment so you don't need it packaged with your app. For a web app, this means that the JAR file will not be placed into the WEB-INF/lib directory.

    For a web app, if the app server already provides the JAR (or its functionality), then use "provided" otherwise use "compile".

    Here is the reference.

    0 讨论(0)
提交回复
热议问题