maven - pom.xml 中 <dependency> 下的 <scope> 是做什么用的?

标签 maven pom.xml

查看文档 http://maven.apache.org/surefire/maven-surefire-plugin/examples/testng.html ,我们可以看到<scope>标签 <dependency>

那是什么以及我们如何使用它来运行测试?

最佳答案

<scope>元素可以采用 6 个值:compileprovidedruntimetestsystem导入

此范围用于限制依赖项的传递性,并影响用于各种构建任务的类路径。

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.

runtime

This scope indicates that the dependency is not required for compilation, but is for execution. It is in the runtime and test classpaths, but not the compile classpath.

test

This scope indicates that the dependency is not required for normal use of the application, and is only available for the test compilation and execution phases.

system

This scope is similar to provided except that you have to provide the JAR which contains it explicitly. The artifact is always available and is not looked up in a repository.

import (only available in Maven 2.0.9 or later)

This scope is only used on a dependency of type pom in the section. It indicates that the specified POM should be replaced with the dependencies in that POM's section. Since they are replaced, dependencies with a scope of import do not actually participate in limiting the transitivity of a dependency.

回答问题的第二部分:

How can we use it for running test?

请注意 test范围仅允许在测试阶段使用依赖项。

阅读documentation了解完整详细信息。

关于maven - pom.xml 中 <dependency> 下的 <scope> 是做什么用的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26975818/

相关文章:

maven - Jenkins MultiBranchPipeline 因 ModelInterpreter.groovy : 43: unable to resolve class javax. 注释而失败。Nonnull

java - 由于 Grails 中的 java.lang.reflect.MalformedParameterizedTypeException,创建名称为 'pluginManager' 的 bean 时出错

maven - 如何将Maven Pom标签<snapshot>转换为gradle

maven - Gradle - 生成没有依赖的pom

java - JaCoCo 与 Maven - 缺少执行数据文件

runtime - 如何在运行时编辑Maven POM?

java - 使用 Bootstrap 和 Tomcat Embedded 以及未运行的 Java SE 8 创建 Web 应用程序

maven - 如何管理javascript/图像依赖

java - 将 Spring Boot 与 React 链接起来

Maven 中的 Android Firebase 依赖项