maven项目的继承关系

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>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值