maven之scope

最近学习maven是了解下<scope> 中文是这么解释的:

compile (编译范围)

compile是默认的范围;如果没有提供一个范围,那该依赖的范围就是编译范围。编译范围依赖在所有的classpath 中可用,同时它们也会被打包。

provided (已提供范围)

provided 依赖只有在当JDK 或者一个容器已提供该依赖之后才使用。例如, 如果你开发了一个web 应用,你可能在编译 classpath 中需要可用的Servlet API 来编译一个servlet,但是你不会想要在打包好的WAR 中包含这个Servlet API;这个Servlet API JAR 由你的应用服务器或者servlet 容器提供。已提供范围的依赖在编译classpath (不是运行时)可用。它们不是传递性的,也不会被打包。

runtime (运行时范围)

runtime 依赖在运行和测试系统的时候需要,但在编译的时候不需要。比如,你可能在编译的时候只需要JDBC API JAR,而只有在运行的时候才需要JDBC
驱动实现。

test (测试范围)

test范围依赖 在一般的编译和运行时都不需要,它们只有在测试编译和测试运行阶段可用。

system (系统范围)

system范围依赖与provided 类似,但是你必须显式的提供一个对于本地系统中JAR 文件的路径。这么做是为了允许基于本地对象编译,而这些对象是系统类库的一部分。这样的构件应该是一直可用的,Maven 也不会在仓库中去寻找它。如果你将一个依赖范围设置成系统范围,你必须同时提供一个 systemPath 元素。注意该范围是不推荐使用的(你应该一直尽量去从公共或定制的 Maven 仓库中引用依赖)。

在maven的官方中是这样描述的

Dependency Scope
Dependency scope is used to
limit the transitivity of a depedency, and also to affect the classpath
used for various build tasks.

There are 6 scopes available:

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
<dependencyManagement> section. It indicates that the specified
POM should be replaced with the dependencies in that POM‘s
<dependencyManagement> section. Since they are replaced,
dependencies with a scope of import do not actually participate in
limiting the transitivity of a dependency.

时间: 2024-10-12 19:11:45

maven之scope的相关文章

maven 中scope 的应用

maven 中scope 定义了这个包的应用范围,根据场景不同某些jar的应用也不同,scope 有5种类型: 以下内容是转帖复制: 一.compile:编译范围compile是默认的范围:如果没有提供一个范围,编译范围依赖在所有的classpath 中可用,同时它们也会被打包.而且这些dependency会传递到依赖的项目中. 二.provided:已提供范围provided 明了dependency 由JDK或者容器提供.例如如果开发了一个web 应用,可能在编译 classpath 中需要

Maven依赖Scope标签用法

在一个maven项目中,如果存在编译需要而发布不需要的jar包,可以用scope标签,值设为provided.如下: <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.4</version> <scope>provided</scope> </depende

Maven Dependency Scope用法

原帖地址:http://uule.iteye.com/blog/2087485 官方API描述 Dependency scope 是用来限制Dependency的作用范围的, 影响maven项目在各个生命周期时导入的package的状态. 自从2.0.9后,新增了1种,现在有了6种scope: compile默认的scope,表示 dependency 都可以在生命周期中使用.而且,这些dependencies 会传递到依赖的项目中. provided跟compile相似,但是表明了depend

Maven的scope

依赖的Scopescope定义了类包在项目的使用阶段.项目阶段包括: 编译,运行,测试和发布. 分类说明compile 默认scope为compile,表示为当前依赖参与项目的编译.测试和运行阶段,属于强依赖.打包之时,会达到包里去.test 该依赖仅仅参与测试相关的内容,包括测试用例的编译和执行,比如定性的Junit.runtime 依赖仅参与运行周期中的使用.一般这种类库都是接口与实现相分离的类库,比如JDBC类库,在编译之时仅依赖相关的接口,在具体的运行之时,才需要具体的mysql.ora

【Maven】Maven之scope依赖范围

一.理解Maven scope依赖范围的作用 Maven在编译项目主代码的时候需要使用一套classspath.总共有三种classpath,分别对应于Maven编译项目主代码的时候.Maven编译和执行测试的时候.实际运行Maven项目的时候. Compile: 编泽依赖范围.如果没有指定,就会默认使用该依赖范围.使用此依赖范围的Maven依赖,对于编译.测试.运行三种classpath都有效.比如spring-core依赖,在编辑.测试.运行的时候都需要使用该依赖. test: 测试依赖范围

Maven的scope标签类别说明记录

<dependency> <groupId>org.apache.zookeeper</groupId> <artifactId>zookeeper</artifactId> <version>3.4.6</version> <scope>test</scope></dependency> scope定义了类包在项目的使用阶段.项目阶段包括:编译,运行,测试和发布. compile:默认

Maven依赖中的scope详解

原文链接:https://blog.csdn.net/kimylrong/article/details/50353161 原创kimy 发布于2015-12-18 17:36:48 阅读数 109197 收藏展开 Maven的一个哲学是惯例优于配置(Convention Over Configuration), Maven默认的依赖配置项中,scope的默认值是compile,项目中经常傻傻的分不清,直接默认了.今天梳理一下maven的scope. scope的分类compile默认就是com

maven学习心得

心得:这几天一直在研究maven的配置,还真是伤心啊,网上资料不多,而且问题不断.确实很让人头疼 背景:之所以学习maven是因为我们需要一键部署,我们项目是已经差不多完成了,是eclipse的web项目,需要将它变成maven项目 问题: 1.拆分项目为多个模块解决循环依赖 如果一个web项目下面有A,B,C三个模块,各个模块互相依赖,这是maven会提示,这是一个循环依赖,而不能正常编译项目. 解决办法:http://hck.iteye.com/blog/1728329 但是建议最好模块分清

maven课程 项目管理利器-maven 3-7 maven依赖范围 2星

本节主要讲了maven的依赖范围: 在pom.xml   dependency标签的scope中.eclipse中有编译的路径,maven中有编译,运行,测试的路径. 1 scope为test,为测试路径,多为junit jar包 2 scope为compile,为默认级别,编译测试运行都有效 3 scope为provided,编译和测试的时候有效 4 scope为runtime,运行和测试的时候有效  (如:jdbc驱动的实现) 5 scope为system,和compile一致,但是可移植能