Home Maven Dependency Scopes
Post
Cancel

Maven Dependency Scopes

Maven Dependency Scopes

One important aspect of Maven is its ability to manage dependencies, which are external libraries that your project depends on. Maven provides several different dependency scopes, which determine how the dependency is used in your project. In this blog post, we will explore Maven’s dependency scopes in depth and explain how to use them effectively in your projects.

What are Maven Dependency Scopes?

Maven dependency scopes are used to specify the visibility and availability of a dependency during different stages of the build process. They define the scope in which a dependency is used and where it is available.

There are six different dependency scopes in Maven:

  • compile: This is the default scope, and it means that the dependency is needed for both compiling and running the application.

  • provided: This scope indicates that the dependency is needed for compiling but will be provided by the runtime environment at runtime.

  • runtime: This scope is used to specify dependencies that are needed at runtime, but not for compiling the application.

  • test: This scope is used for dependencies that are only needed for running tests.

  • system: This scope is used to specify dependencies that are not included in Maven repositories, but are located on the local file system.

  • import: This scope is used to import the dependency management section from another project’s POM.

How to use Maven Dependency Scopes

Now that we have an understanding of what Maven dependency scopes are, let’s look at how to use them in your project’s POM.

1. compile Scope As mentioned earlier, to compile scope is the default scope for Maven dependencies. It means that the dependency is needed for both compiling and running the application. Here is an example of how to include a dependency with the compile scope:

1
2
3
4
5
<dependency>
    <groupId>com.example</groupId>
    <artifactId>example-library</artifactId>
    <version>1.0.0</version>
</dependency>

2. provided Scope The provided scope is used to indicate that the dependency is needed for compiling but will be provided by the runtime environment at runtime. An example of this is the Servlet API, which is provided by a web server such as Tomcat or Jetty. Here is an example of how to include a dependency with the provided scope:

1
2
3
4
5
6
<dependency>
    <groupId>javax.servlet</groupId>
    <artifactId>servlet-api</artifactId>
    <version>3.1.0</version>
    <scope>provided</scope>
</dependency>

3. runtime Scope The runtime scope is used to specify dependencies that are needed at runtime, but not for compiling the application. An example of this is the JDBC driver for a database. Here is an example of how to include a dependency with the runtime scope:

1
2
3
4
5
6
<dependency>
    <groupId>com.example</groupId>
    <artifactId>jdbc-driver</artifactId>
    <version>1.0.0</version>
    <scope>runtime</scope>
</dependency>

4. test Scope The test scope is used for dependencies that are only needed for running tests. An example of this is the JUnit testing framework. Here is an example of how to include a dependency with the test scope:

1
2
3
4
5
6
<dependency>
    <groupId>junit</groupId>
    <artifactId>junit</artifactId>
    <version>4.12</version>
    <scope>test</scope>
</dependency>

5. System Scope The system scope is used to specify dependencies that are provided by the system on which the project is being built, and are not available in any public repository. For example, if a project requires a JAR file that is provided by the operating system, the system scope can be used to reference it.

To use the system scope, the dependency must be explicitly declared in the project’s POM file, and the path to the JAR file must be specified. Here is an example:

1
2
3
4
5
6
7
<dependency>
  <groupId>com.example</groupId>
  <artifactId>my-app</artifactId>
  <version>1.0</version>
  <scope>system</scope>
  <systemPath>/path/to/my-app.jar</systemPath>
</dependency>

In the example above, the my-app.jar file is located at /path/to/my-app.jar on the system where the project is being built. The system scope is used to tell Maven to use this JAR file as a dependency for the project.

Note that using the system scope can make a project less portable, since it relies on the existence of the dependency on the system where the project is being built.

6. import Scope The import scope is used to import dependencies that are declared in another Maven project. This is useful when a project has a large number of dependencies that are shared by multiple modules, and you don’t want to declare the dependencies in each module’s POM file.

To use the import scope, you need to create a separate POM file that declares the dependencies, and use it in the POM files of the modules that need the dependencies. Here is an example:

1
2
3
4
5
6
7
<dependency>
  <groupId>com.example</groupId>
  <artifactId>shared-dependencies</artifactId>
  <version>1.0</version>
  <type>pom</type>
  <scope>import</scope>
</dependency>

In the example above, the shared-dependencies project declares a set of dependencies in its POM file, and has a type of pom. The import scope is used to tell Maven to import the dependencies from the shared-dependencies project.

Using the import scope can help reduce duplication of dependency declarations in a large project, and make it easier to manage dependencies across multiple modules.

Best Practices for Maven Dependency Scope

When working with Maven dependencies, it’s important to choose the appropriate scope for each library. Here are some best practices to keep in mind:

Use the default “compile” scope for libraries that are needed both during compilation and at runtime.

Use the “provided” scope for libraries that are required to build the project but are expected to be provided by the runtime environment.

Use the “runtime” scope for libraries that are only required at runtime.

Use the “test” scope for libraries that are only required

Conclusion :

In conclusion, the Maven Dependency Scope is an essential concept for managing dependencies in Maven projects. The scope attribute helps in controlling the classpath of a project and ensures that the correct dependencies are included at compile and runtime. By understanding the different scopes and how they work, developers can optimize their project’s performance, reduce runtime errors, and prevent dependency conflicts. However, it is crucial to use the appropriate scope for each dependency to avoid unexpected behavior and ensure that the project runs efficiently. It’s essential to understand the scope options and select the one that best fits the needs of the project. In summary, having a good understanding of Maven dependency scope is key to developing reliable and maintainable software projects.

This post is licensed under CC BY 4.0 by the author.