前言
Maven 是一个开源的构建工具,用于管理 Java 项目的构建、依赖管理和项目信息管理。它提供了一种标准化的项目结构和构建流程,简化了项目的构建和部署过程。
maven特点以及功能
依赖管理:Maven 提供了强大的依赖管理功能。通过在项目的配置文件(pom.xml)中声明依赖项,Maven 可以自动下载和管理项目所需的依赖库。它可以从中央仓库或其他远程仓库中获取依赖,并处理依赖的传递性。
构建自动化:Maven 提供了一套标准化的构建生命周期和构建插件机制。通过配置构建插件和目标,可以自动执行编译、测试、打包、部署等构建任务。Maven 通过简单的命令行接口或集成开发环境(IDE)插件,使构建过程变得简单和可重复。
标准项目结构:Maven 鼓励使用一种标准化的项目结构,使开发人员能够更容易地理解和维护项目。项目结构包括源代码目录、资源目录、测试代码目录等,这些目录结构在 Maven 中有固定的约定。
插件生态系统:Maven 拥有丰富的插件生态系统,使开发人员可以扩展构建过程和添加自定义功能。插件可以用于各种任务,如代码质量检查、静态分析、测试覆盖率报告等。
多模块支持:Maven 支持多模块项目,其中一个项目可以包含多个子模块。这些子模块可以相互依赖,并共享父项目的配置和依赖。这使得大型项目的管理和构建变得更加灵活和可控。
仓库管理:Maven 使用中央仓库作为默认的依赖库,并提供了一个集中的地方来分享和发布项目的构件。开发人员还可以配置私有仓库来管理自己的构件。
生命周期和插件机制:Maven 定义了一套标准的构建生命周期,包括清理、验证、编译、测试、打包、部署等阶段。每个阶段都与 Maven 插件关联,可以在不同的阶段执行自定义的构建任务。
Dependency
maven中引入一个依赖 只需要在 dependencies中新加一个dependency 即可
示例如下
<dependencies><dependency><groupId>org.projectlombok</groupId><artifactId>lombok</artifactId><optional>true</optional></dependency>
</dependencies>
Scope
scope翻译:依赖的范围
官方说明: The scope of the dependency
可选值: compile runtime test system provided
作用: Used to calculate the various classpaths used for compilation, testing, and so on. It also assists in determining which artifacts to include in a distribution of this project.
翻译过来: 用于计算用于编译、测试等的各种类路径。 它还有助于确定要包含在该项目的发行版中的工件。
官方文档说明: https://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html#dependency-scope
官方描述:
There are 6 scopes:
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. A dependency with this scope is added to the classpath used for compilation and test, but not the runtime classpath. It is not transitive.
runtime
This scope indicates that the dependency is not required for compilation, but is for execution. Maven includes a dependency with this scope 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. This scope is not transitive. Typically this scope is used for test libraries such as JUnit and Mockito. It is also used for non-test libraries such as Apache Commons IO if those libraries are used in unit tests (src/test/java) but not in the model code (src/main/java).
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
This scope is only supported on a dependency of type pom in the section. It indicates the dependency is to be replaced with the effective list of dependencies in the specified POM’s section. Since they are replaced, dependencies with a scope of import do not actually participate in limiting the transitivity of a dependency.
scope 属性值的含义说明:
compile(默认值):这是最常用的scope属性值。依赖项在编译、测试和运行阶段都是可见的,并被包含在最终的构建结果中(例如JAR文件)。
provided:这个scope属性表示依赖项在编译和测试阶段可见,但在运行阶段由部署环境(如Java EE容器)提供。这意味着在构建项目时,需要确保依赖项在编译和测试时可用,但在运行时不会包含它们,因为它们将由部署环境提供。
runtime:该scope属性表示依赖项在运行和测试阶段可见,但在编译阶段不需要。这意味着依赖项在编译项目时不会被包含,但在运行时和测试时可用。
test:这个scope属性表示依赖项只在测试阶段可见,不会被包含在最终的构建结果中。这些依赖项主要用于测试代码,不会影响项目的生产环境。
system:这个scope属性用于指定已经存在于系统中的依赖项。它类似于provided,但需要显式地提供元素来指定依赖项的路径。在使用system作用域时,Maven将不会尝试从远程仓库下载该依赖项。
import:这个scope属性仅适用于部分中的依赖项声明。它表示该依赖项仅用于导入传递依赖版本号,而不参与实际构建。
这个scope 还有个妙用 就是用来解决依赖的间的版本冲突
例如,如果你遇到依赖冲突,可以将相关依赖的作用范围设置为 provided 或 runtime,以便在编译时不引入冲突,或者仅在运行时解决冲突。
以下是一个示例,展示如何使用 标签来解决依赖冲突问题:
<dependencies><dependency><groupId>com.example</groupId><artifactId>dependency-A</artifactId><version>1.0.0</version><scope>provided</scope></dependency><dependency><groupId>com.example</groupId><artifactId>dependency-B</artifactId><version>2.0.0</version><scope>runtime</scope></dependency>
</dependencies>
在上面的示例中 dependency-A 的作用范围被设置为 provided,这意味着它将由容器或环境提供,而不会被打包到项目中。dependency-B 的作用范围被设置为 runtime,这意味着它在运行时可见,但在编译时不需要。
通过合理设置 标签,你可以控制依赖的可见性和传递性,以解决依赖冲突问题,并确保项目的正确构建和运行。
the end !!!
good day !!!