2025-06-17 13:36:33 +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"
|
|
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
|
|
<parent>
|
|
|
|
|
|
<artifactId>bonus-robot</artifactId>
|
|
|
|
|
|
<groupId>com.bonus</groupId>
|
|
|
|
|
|
<version>3.8.9</version>
|
|
|
|
|
|
</parent>
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
<artifactId>bonus-business</artifactId>
|
|
|
|
|
|
<description>
|
|
|
|
|
|
web服务入口
|
|
|
|
|
|
</description>
|
|
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
2025-07-03 18:51:03 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
|
|
|
<artifactId>hutool-all</artifactId>
|
|
|
|
|
|
<version>5.3.2</version>
|
|
|
|
|
|
</dependency>
|
2025-06-30 14:09:23 +08:00
|
|
|
|
<!-- SpringCloud Alibaba Nacos -->
|
2025-07-19 18:30:15 +08:00
|
|
|
|
<!-- <dependency>-->
|
|
|
|
|
|
<!-- <groupId>com.alibaba.cloud</groupId>-->
|
|
|
|
|
|
<!-- <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>-->
|
|
|
|
|
|
<!-- </dependency>-->
|
2025-06-30 14:09:23 +08:00
|
|
|
|
|
|
|
|
|
|
|
2025-07-19 18:30:15 +08:00
|
|
|
|
<!-- <!– SpringCloud Alibaba Sentinel –>-->
|
|
|
|
|
|
<!-- <dependency>-->
|
|
|
|
|
|
<!-- <groupId>com.alibaba.cloud</groupId>-->
|
|
|
|
|
|
<!-- <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>-->
|
|
|
|
|
|
<!-- </dependency>-->
|
2025-06-30 14:09:23 +08:00
|
|
|
|
|
2025-06-17 13:36:33 +08:00
|
|
|
|
<!-- spring-boot-devtools -->
|
2025-07-19 18:30:15 +08:00
|
|
|
|
<!-- <dependency>-->
|
|
|
|
|
|
<!-- <groupId>org.springframework.boot</groupId>-->
|
|
|
|
|
|
<!-- <artifactId>spring-boot-devtools</artifactId>-->
|
|
|
|
|
|
<!-- <optional>true</optional> <!– 表示依赖不会传递 –>-->
|
|
|
|
|
|
<!-- </dependency>-->
|
2025-06-17 13:36:33 +08:00
|
|
|
|
|
|
|
|
|
|
<!-- swagger3-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>io.springfox</groupId>
|
|
|
|
|
|
<artifactId>springfox-boot-starter</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 防止进入swagger页面报类型转换错误,排除3.0.0中的引用,手动增加1.6.2版本 -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>io.swagger</groupId>
|
|
|
|
|
|
<artifactId>swagger-models</artifactId>
|
|
|
|
|
|
<version>1.6.2</version>
|
|
|
|
|
|
</dependency>
|
2025-07-10 14:28:19 +08:00
|
|
|
|
<!-- <dependency>-->
|
|
|
|
|
|
<!-- <groupId>org.springframework.boot</groupId>-->
|
|
|
|
|
|
<!-- <artifactId>spring-boot-starter-data-mongodb</artifactId>-->
|
|
|
|
|
|
<!-- <version>2.5.6</version>-->
|
|
|
|
|
|
<!-- </dependency>-->
|
2025-06-17 13:36:33 +08:00
|
|
|
|
<!-- Mysql驱动包 -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
2025-06-28 15:14:03 +08:00
|
|
|
|
<version>8.0.33</version>
|
2025-06-17 13:36:33 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
|
2025-07-04 09:36:12 +08:00
|
|
|
|
<!-- Apache Commons Imaging -->
|
|
|
|
|
|
<dependency>
|
2025-07-10 14:28:19 +08:00
|
|
|
|
<groupId>io.minio</groupId>
|
|
|
|
|
|
<artifactId>minio</artifactId>
|
|
|
|
|
|
<version>8.2.2</version>
|
2025-07-04 09:36:12 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Apache HttpClient 处理Digest 认证流程-->
|
|
|
|
|
|
<!-- <dependency>-->
|
|
|
|
|
|
<!-- <groupId>org.apache.httpcomponents.client5</groupId>-->
|
|
|
|
|
|
<!-- <artifactId>httpclient5</artifactId>-->
|
|
|
|
|
|
<!-- <version>5.2.1</version>-->
|
|
|
|
|
|
<!-- </dependency>-->
|
|
|
|
|
|
|
|
|
|
|
|
<!-- hutool工具类 -->
|
|
|
|
|
|
<!-- <dependency>-->
|
|
|
|
|
|
<!-- <groupId>cn.hutool</groupId>-->
|
|
|
|
|
|
<!-- <artifactId>hutool-all</artifactId>-->
|
|
|
|
|
|
<!-- <version>5.8.0</version>-->
|
|
|
|
|
|
<!-- </dependency>-->
|
|
|
|
|
|
|
2025-06-17 13:36:33 +08:00
|
|
|
|
<!-- 核心模块-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.bonus</groupId>
|
|
|
|
|
|
<artifactId>bonus-framework</artifactId>
|
|
|
|
|
|
</dependency>
|
2025-06-28 15:14:03 +08:00
|
|
|
|
<!--第三方请求-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
|
|
|
|
<artifactId>okhttp</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
|
|
<artifactId>httpclient</artifactId>
|
|
|
|
|
|
<version>4.5.13</version>
|
|
|
|
|
|
</dependency>
|
2025-07-04 09:36:12 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
|
|
<artifactId>httpmime</artifactId>
|
|
|
|
|
|
<version>4.5.13</version> <!-- 或者更高版本 -->
|
|
|
|
|
|
</dependency>
|
2025-06-28 15:14:03 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
|
|
<artifactId>jackson-core</artifactId>
|
|
|
|
|
|
<version>2.15.3</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
|
|
<version>2.15.3</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>dom4j</groupId>
|
|
|
|
|
|
<artifactId>dom4j</artifactId>
|
|
|
|
|
|
<version>1.6.1</version>
|
|
|
|
|
|
<scope>compile</scope>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!--代码生成-->
|
2025-07-28 15:56:34 +08:00
|
|
|
|
<!--<dependency>
|
2025-06-17 13:36:33 +08:00
|
|
|
|
<groupId>com.bonus</groupId>
|
|
|
|
|
|
<artifactId>bonus-generator</artifactId>
|
2025-07-28 15:56:34 +08:00
|
|
|
|
</dependency>-->
|
2025-06-28 15:14:03 +08:00
|
|
|
|
<!-- lombok -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
|
|
<version>1.18.20</version>
|
|
|
|
|
|
</dependency>
|
2025-06-17 13:36:33 +08:00
|
|
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
|
<plugins>
|
|
|
|
|
|
<plugin>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
|
<version>2.5.15</version>
|
|
|
|
|
|
<configuration>
|
|
|
|
|
|
<fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->
|
|
|
|
|
|
</configuration>
|
|
|
|
|
|
<executions>
|
|
|
|
|
|
<execution>
|
|
|
|
|
|
<goals>
|
|
|
|
|
|
<goal>repackage</goal>
|
|
|
|
|
|
</goals>
|
|
|
|
|
|
</execution>
|
|
|
|
|
|
</executions>
|
|
|
|
|
|
</plugin>
|
2025-07-04 09:36:12 +08:00
|
|
|
|
<plugin>
|
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2025-07-07 09:15:48 +08:00
|
|
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
|
|
|
|
<version>3.1.0</version>
|
2025-07-04 09:36:12 +08:00
|
|
|
|
<configuration>
|
2025-07-07 09:15:48 +08:00
|
|
|
|
<failOnMissingWebXml>false</failOnMissingWebXml>
|
|
|
|
|
|
<warName>${project.artifactId}</warName>
|
2025-07-04 09:36:12 +08:00
|
|
|
|
</configuration>
|
|
|
|
|
|
</plugin>
|
2025-06-17 13:36:33 +08:00
|
|
|
|
</plugins>
|
|
|
|
|
|
<finalName>${project.artifactId}</finalName>
|
|
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
|
|
</project>
|