maven项目的继承主要用用maven分模块设计相同依赖的统一管理
1.创建maven项目在同一级目录下 2.src文件可删除也可以不删除iml是ide配置文件文件一定要保留 父类工程不写代码只做统一依赖管理
2.配置父工程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"> <modelVersion>4.0.0</modelVersion> <!--要是有父工程就这样写 父工程的父工程 <parent> <groupId>org.example</groupId> <artifactId>itheima-fu</artifactId> <version>1.0-SNAPSHOT</version> <relativePath>../itheima-fu/pom.xml</relativePath> 要是不写父工程位置信息他会从中央仓库找找不到就报错 比如<relativePath></relativePath> </parent> --> <!--设置父工程--> <groupId>org.example</groupId> <artifactId>itheima-fu</artifactId> <version>1.0-SNAPSHOT</version> <packaging>pom</packaging><!--设置父工程需要设置pom打包方式--> <!--..............................................................................................................................--> <properties> <maven.compiler.source>11</maven.compiler.source> <maven.compiler.target>11</maven.compiler.target> </properties> <dependencies> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.24</version> </dependency> </dependencies> </project>
3.子工程如何继承父工程
<?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"> <modelVersion>4.0.0</modelVersion> <groupId>org.example</groupId><!--组名id重复了可以删除他会从父工程继承下来--> <artifactId>ithema-jopo</artifactId> <version>1.0-SNAPSHOT</version> <!--parent表示父工程是谁 指定父工程--> <parent> <groupId>org.example</groupId> <artifactId>itheima-fu</artifactId> <version>1.0-SNAPSHOT</version> <relativePath>../itheima-fu/pom.xml</relativePath><!-- ..表示往后退出一层找到父工程的pom文件 --> </parent> <!--6666666666666666666666666666666666666666666666666666666666666666666666--> <properties> <maven.compiler.source>11</maven.compiler.source> <maven.compiler.target>11</maven.compiler.target> </properties> </project>