Maven的核心笔记(5)maven的依赖范围

  • 1.依赖的范围:
    • 项目的三种classpath:编译、测试、运行

<dependencies>
    <dependency>
    <groupId>junit</groupId>
    <artifactId>junit</artifactId>
    <version>3.8.1</version>
    <scope>test</scope>
    </dependency>
</dependencies>

//表示Junit依赖范围是test,表明:junnit只存在测试的范围。
  • 2.maven提供了6种scope
Compile:默认的范围,编译、测试、运行的classpath都有效
Provided:编译、测试有效,最后运行的时候不会被加入
Runtime:测试、运行有效
Test:仅测试有效
System:与本机系统相关联,编译测试有效,但是可移植性差
Import:导入的依赖范围,它只是用在dependencyManagemet中,表示从其他的pom中导入dependency的配置。

举例说明import

...
    <groupId>maven</groupId>
    <artifactId>B</artifactId>
    <packageing>pom</packageing>
    <name>B</name>
    <version>1.0</version>
    <dependencyManagement>
        <dependencies>
            <dependency>
            <groupId>maven</groupId>
            <artifactId>A</artifactId>
            <version>1.0</version>
            <type>pom</type>
            <scope>import</scope>
            </dependency>
    </dependencies>
表示:将A中的依赖导入到B中
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值