Maven的简单使用二
依赖的传递性
创建三个项目 origin_a, origin_b, origin_c
c继承b,b继承a
首先把a的pom.xml坐标复制到b的pom.xml中的依赖中去
这是b的pom.xml
首先对a进行编译,打包,然后安装到本地仓库中,这样b才能找到a的依赖。
a项目被成功的安装在了本地目录
然后又把b安装在本地目录,然后c修改pom.xml文件依赖b,进行编译。c的依赖包就多了a和b,这就是依赖的传递性
依赖排除
c只依赖b,不依赖a,用exclusions
然后c的依赖包里,a的依赖排除了
在setting.xml的profiles节点下里面添加,这能让maven默认jdk为1.8
<profile>
<id>jdk-1.8</id>
<activation>
<activeByDefault>true</activeByDefault>
<jdk>1.8</jdk>
</activation>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
</properties>
</profile>
依赖冲突
依赖短路优先:比如c依赖b,b依赖a,然后a和b依赖同一个jar包,但是版本不同。然后c会选择依赖b的jar包
相同路径下先申明优先:比如a和b依赖同一个jar包,c依赖a也依赖b,在c的pom.xml中,对a或者b的依赖谁写在最前面的就依赖谁的jar包
聚合
新建项目,然后在pom.xml中配置:
然后Run As — Maven build..(这是可以同时输入多个目标)
这样生成多个jar,同时安装在*仓库中。
继承
父类pom.xml
子类pom.xml
如果项目有红×就更新项目
创建web项目
报错原因:The superclass “javax.servlet.http.HttpServlet” was not found on the Java Build Path
解决方法:需要在pom.xml添加servlet.api的依赖,可以在maven官网复制下来
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>4.0.1</version>
<scope>provided</scope>
</dependency>
上一篇: 第2章 Openwrt开发环境搭建
下一篇: 第6章_递归