理解 maven 多模块项目依赖关系
程序员文章站
2024-02-03 20:50:28
...
语言功底差,直接上代码。然后再解释
1。父pom
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<!-- 基本信息 -->
<description>SpringBoot 多模块构建示例</description>
<modelVersion>4.0.0</modelVersion>
<name>Multi_module</name>
<packaging>pom</packaging>
<!-- 项目信息 -->
<groupId>com.xie</groupId>
<artifactId>Multi_module</artifactId>
<version>1.0-SNAPSHOT</version>
<!-- 继承springboot提供的父工程 -->
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.1.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<!--编码格式-->
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
</properties>
<!-- 声明多个子模块-->
<modules>
<module>springboot-web</module>
<module>springboot-dao</module>
<module>springboot-jpa</module>
<module>springboot-service1</module>
<module>springboot-service2</module>
<module>springboot-test</module>
</modules>
<dependencies>
<!--data-jpa-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
</dependencies>
<!--版本说明,统一管理版本号-->
<dependencyManagement>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
</dependency>
<!--本地依赖-->
<dependency>
<groupId>com.xie</groupId>
<artifactId>springboot-web</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.xie</groupId>
<artifactId>springboot-jpa</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.xie</groupId>
<artifactId>springboot-dao</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.xie</groupId>
<artifactId>springboot-service1</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.xie</groupId>
<artifactId>springboot-service2</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>
在父pom的 <dependencies> 里引入的依赖子项目会继承,也就说,只要在父pom的<dependencies>里引入的东西,子项目就可以直接用
</dependencyManagement> 负责管理子项目的依赖版本。也就是说,在这里引入的依赖,子项目不会继承,子项目要用到的依赖还是要子项目自己去进行<dependencies>引入,但是,子项目在引用时是没有版本号的,版本号在父pom的</dependencyManagement> 里定义好了。
我们可以看一下springboot提供的父工程示例。