idea创建公用依赖包项目

创建parent项目

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

<?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>com.example</groupId>
        <artifactId>parent</artifactId>
        <version>0.0.1-SNAPSHOT</version>
    </parent>
    <groupId>org.example</groupId>
    <artifactId>common-1</artifactId>
    <properties>
        <maven.compiler.source>17</maven.compiler.source>
        <maven.compiler.target>17</maven.compiler.target>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>
    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <configuration>
                    <skip>true</skip>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

相关推荐

最近更新

  1. docker php8.1+nginx base 镜像 dockerfile 配置

    2024-01-23 19:48:03       98 阅读
  2. Could not load dynamic library ‘cudart64_100.dll‘

    2024-01-23 19:48:03       106 阅读
  3. 在Django里面运行非项目文件

    2024-01-23 19:48:03       87 阅读
  4. Python语言-面向对象

    2024-01-23 19:48:03       96 阅读

热门阅读

  1. Hotspot源码解析-第22章-vtable和itable的重新初始化

    2024-01-23 19:48:03       53 阅读
  2. 25. string和const char哪个更合理?

    2024-01-23 19:48:03       57 阅读
  3. 免费chartGPT网站汇总

    2024-01-23 19:48:03       53 阅读
  4. 如何从软硬件层面优化MySQL?

    2024-01-23 19:48:03       53 阅读
  5. 【Poetry】python包管理工具简介

    2024-01-23 19:48:03       60 阅读
  6. 一键生成-微信问一问解答

    2024-01-23 19:48:03       56 阅读
  7. Midjourney常见命令(极速版)

    2024-01-23 19:48:03       55 阅读
  8. 10个常用python自动化脚本

    2024-01-23 19:48:03       45 阅读
  9. 装进肚子(贪心)

    2024-01-23 19:48:03       51 阅读
  10. linux信号处理机制

    2024-01-23 19:48:03       58 阅读