opencainiao / -

0 stars 0 forks source link

父子配置POM文件中的依赖关系 #2

Open opencainiao opened 9 years ago

opencainiao commented 9 years ago

父配置中的依赖不会传递给子,只是统一了依赖中的版本关系

父配置中,配置好版本
子配置中,只需要设置依赖,不需要写版本,则统一使用父配置中配置的版本

<dependencyManagement>
      <dependencies>
            <dependency>
                <groupId>junit
                <artifactId>junit
                <version>4.10
                <scope>test
            </dependency>
      </dependencies>
</dependencyManagement>

<dependency>
    <groupId>junit
    <artifactId>junit
</dependency>

此时子中设置的依赖,才真正引入该依赖包,同时,版本为父配置中设置的4.10