2025-05-11 17:21:07 +08:00
|
|
|
<?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"
|
2025-05-18 21:59:19 +08:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2025-05-11 17:21:07 +08:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2025-05-25 17:24:57 +08:00
|
|
|
|
2025-05-11 17:21:07 +08:00
|
|
|
<parent>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
2025-05-25 17:24:57 +08:00
|
|
|
<version>3.1.5</version>
|
2025-05-11 17:21:07 +08:00
|
|
|
<relativePath/> <!-- lookup parent from repository -->
|
|
|
|
</parent>
|
2025-05-25 17:24:57 +08:00
|
|
|
|
2025-05-11 17:21:07 +08:00
|
|
|
<groupId>com.bipt</groupId>
|
|
|
|
<artifactId>intelligent-application-orchestration-service</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<name>intelligent-application-orchestration-service</name>
|
|
|
|
<description>intelligent-application-orchestration-service</description>
|
|
|
|
<url/>
|
2025-05-25 17:24:57 +08:00
|
|
|
|
2025-05-11 17:21:07 +08:00
|
|
|
<properties>
|
2025-05-18 21:59:19 +08:00
|
|
|
<java.version>21</java.version>
|
2025-05-25 17:24:57 +08:00
|
|
|
<!-- 添加 Spring Cloud 版本控制 -->
|
|
|
|
<spring-cloud.version>2022.0.4</spring-cloud.version>
|
2025-05-11 17:21:07 +08:00
|
|
|
</properties>
|
2025-05-25 17:24:57 +08:00
|
|
|
|
|
|
|
<!-- 依赖管理:统一控制 Spring Cloud 和 Alibaba 版本 -->
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<!-- Spring Cloud 依赖 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-dependencies</artifactId>
|
|
|
|
<version>${spring-cloud.version}</version>
|
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
<!-- Spring Cloud Alibaba 依赖 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-alibaba-dependencies</artifactId>
|
2025-06-03 21:52:51 +08:00
|
|
|
<version>2022.0.0.0-RC2</version> <!-- 适配 Spring Boot 3.1.x 的正确版本 -->
|
2025-05-25 17:24:57 +08:00
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
2025-05-11 17:21:07 +08:00
|
|
|
<dependencies>
|
2025-05-25 17:24:57 +08:00
|
|
|
<!-- Spring Boot 基础依赖 -->
|
2025-05-11 17:21:07 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-jdbc</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
</dependency>
|
2025-05-20 16:33:07 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
|
|
|
</dependency>
|
2025-05-25 17:24:57 +08:00
|
|
|
|
|
|
|
<!-- 数据库驱动 -->
|
2025-05-11 17:21:07 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.postgresql</groupId>
|
|
|
|
<artifactId>postgresql</artifactId>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
2025-05-25 17:24:57 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.kingbase8</groupId>
|
|
|
|
<artifactId>kingbase8</artifactId>
|
|
|
|
<version>9.0.0</version>
|
|
|
|
</dependency>
|
2025-06-05 10:56:59 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-aop</artifactId>
|
|
|
|
</dependency>
|
2025-05-25 17:24:57 +08:00
|
|
|
<!-- 工具类依赖 -->
|
2025-05-11 17:21:07 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
2025-05-15 08:28:46 +08:00
|
|
|
<version>1.18.38</version>
|
2025-05-11 17:21:07 +08:00
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2025-05-14 23:07:09 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.pagehelper</groupId>
|
|
|
|
<artifactId>pagehelper-spring-boot-starter</artifactId>
|
|
|
|
<version>1.4.7</version>
|
|
|
|
</dependency>
|
2025-05-15 23:02:53 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springdoc</groupId>
|
|
|
|
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
|
2025-05-25 17:24:57 +08:00
|
|
|
<version>2.3.0</version>
|
2025-05-15 23:02:53 +08:00
|
|
|
</dependency>
|
2025-05-14 23:07:09 +08:00
|
|
|
|
2025-05-25 17:24:57 +08:00
|
|
|
<!-- Nacos 配置依赖(移除手动版本,由上方依赖管理控制) -->
|
2025-05-13 10:47:23 +08:00
|
|
|
<dependency>
|
2025-05-25 17:24:57 +08:00
|
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
2025-05-13 10:47:23 +08:00
|
|
|
</dependency>
|
2025-05-25 17:24:57 +08:00
|
|
|
<!-- Spring Boot 3.x 必须的 Bootstrap 依赖(无需版本号) -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-starter-bootstrap</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- 测试依赖 -->
|
2025-05-11 17:21:07 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2025-05-13 21:36:29 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.mybatis.spring.boot</groupId>
|
|
|
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
|
|
|
<version>3.0.4</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mybatis.spring.boot</groupId>
|
|
|
|
<artifactId>mybatis-spring-boot-starter-test</artifactId>
|
|
|
|
<version>3.0.4</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2025-06-05 11:02:41 +08:00
|
|
|
|
2025-05-14 21:38:41 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-validation</artifactId>
|
|
|
|
</dependency>
|
2025-06-05 10:56:59 +08:00
|
|
|
|
2025-05-14 21:38:41 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
2025-05-22 18:08:28 +08:00
|
|
|
<version>3.17.0</version>
|
2025-05-14 21:38:41 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mapstruct</groupId>
|
|
|
|
<artifactId>mapstruct</artifactId>
|
|
|
|
<version>1.5.5.Final</version> <!-- 确保版本 ≥1.2.0 -->
|
|
|
|
</dependency>
|
2025-06-05 10:56:59 +08:00
|
|
|
|
|
|
|
|
2025-05-22 18:08:28 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
2025-06-05 12:36:13 +08:00
|
|
|
<exclusions>
|
|
|
|
<!-- 排除 RabbitMQ 自动配置 -->
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-amqp</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2025-05-22 18:08:28 +08:00
|
|
|
</dependency>
|
2025-06-05 12:36:13 +08:00
|
|
|
|
2025-05-22 18:08:28 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
|
<artifactId>mybatis-plus-generator</artifactId>
|
|
|
|
<version>3.5.6</version>
|
|
|
|
</dependency>
|
2025-06-03 21:28:40 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
|
|
|
<version>3.5.6</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
</dependency>
|
2025-05-11 17:21:07 +08:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
2025-05-25 17:24:57 +08:00
|
|
|
<!-- 显式指定 Java 21 编译 -->
|
|
|
|
<source>${java.version}</source>
|
|
|
|
<target>${java.version}</target>
|
2025-05-11 17:21:07 +08:00
|
|
|
<annotationProcessorPaths>
|
|
|
|
<path>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
2025-05-15 08:33:13 +08:00
|
|
|
<version>1.18.38</version>
|
2025-05-11 17:21:07 +08:00
|
|
|
</path>
|
|
|
|
</annotationProcessorPaths>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<excludes>
|
|
|
|
<exclude>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
</exclude>
|
|
|
|
</excludes>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2025-05-25 17:24:57 +08:00
|
|
|
</project>
|