2025-11-27 17:01: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"
|
|
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
<parent>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
2025-12-03 10:51:26 +08:00
|
|
|
|
<version>2.1.1.RELEASE</version>
|
|
|
|
|
|
<relativePath/>
|
2025-11-27 17:01:07 +08:00
|
|
|
|
</parent>
|
2025-12-03 10:51:26 +08:00
|
|
|
|
<groupId>com.bonus.boot</groupId>
|
|
|
|
|
|
<artifactId>HnRealNameMmw</artifactId>
|
2025-11-27 17:01:07 +08:00
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
2025-11-27 17:59:44 +08:00
|
|
|
|
<name>real-name-web</name>
|
|
|
|
|
|
<description>real-name-web</description>
|
2025-11-27 17:01:07 +08:00
|
|
|
|
<properties>
|
|
|
|
|
|
<java.version>1.8</java.version>
|
2025-12-03 10:51:26 +08:00
|
|
|
|
<swagger.version>2.8.0</swagger.version>
|
|
|
|
|
|
<google.guava>23.0</google.guava>
|
|
|
|
|
|
<fastjson.version>1.2.47</fastjson.version>
|
|
|
|
|
|
<druid.version>1.1.9</druid.version>
|
|
|
|
|
|
<poi.version>3.17</poi.version>
|
|
|
|
|
|
<jwt.version>0.9.0</jwt.version>
|
|
|
|
|
|
<mybatis.version>1.3.2</mybatis.version>
|
|
|
|
|
|
<!-- 关键:Spring Cloud 必须兼容 Spring Boot 2.1.x → Greenwich 版本 -->
|
|
|
|
|
|
<spring-cloud.version>Greenwich.SR1</spring-cloud.version>
|
|
|
|
|
|
<!-- 关键:Spring Cloud Alibaba 必须兼容 Spring Boot 2.1.x → 2.1.x 版本 -->
|
|
|
|
|
|
<spring-cloud-alibaba.version>2.1.0.RELEASE</spring-cloud-alibaba.version>
|
|
|
|
|
|
<!-- 无需再手动指定 spring-boot.version(父工程已固定) -->
|
2025-11-27 17:01:07 +08:00
|
|
|
|
</properties>
|
2025-12-03 10:51:26 +08:00
|
|
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
<!-- Spring Cloud 依赖管理(Greenwich 兼容 Spring Boot 2.1.x) -->
|
|
|
|
|
|
<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 依赖管理(2.1.0 兼容 Spring Boot 2.1.x) -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
|
|
|
|
<artifactId>spring-cloud-alibaba-dependencies</artifactId>
|
|
|
|
|
|
<version>${spring-cloud-alibaba.version}</version>
|
|
|
|
|
|
<type>pom</type>
|
|
|
|
|
|
<scope>import</scope>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
2025-11-27 17:01:07 +08:00
|
|
|
|
<dependencies>
|
2025-12-03 10:51:26 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 1. Nacos 发现(版本由 Spring Cloud Alibaba 2.1.0 管理,无需手动指定) -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
|
|
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
|
|
|
|
|
<version>2.1.0.RELEASE</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!-- SpringCloud Alibaba Nacos Config -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
|
|
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
|
|
|
|
|
<version>2.1.0.RELEASE</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!-- SpringCloud Alibaba Sentinel -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
|
|
|
|
<artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 2. 核心依赖(均由父工程管理版本,确保兼容 2.1.1) -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-devtools</artifactId>
|
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
|
</dependency>
|
2025-11-27 17:01:07 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
|
|
</dependency>
|
2025-12-03 10:51:26 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!-- Spring Security 必须用 2.1.1 对应的版本(5.1.x),无手动版本 -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-security</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 3. 数据相关依赖(版本兼容 2.1.1) -->
|
2025-11-27 17:01:07 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.mybatis.spring.boot</groupId>
|
|
|
|
|
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
2025-12-03 10:51:26 +08:00
|
|
|
|
<version>1.3.2</version> <!-- 1.3.x 兼容 Spring Boot 2.1.x -->
|
2025-11-27 17:01:07 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
2025-12-03 10:51:26 +08:00
|
|
|
|
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
|
|
<artifactId>druid-spring-boot-starter</artifactId>
|
|
|
|
|
|
<version>${druid.version}</version>
|
2025-11-27 17:01:07 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
2025-12-03 10:51:26 +08:00
|
|
|
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
2025-11-27 17:01:07 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
|
|
|
<scope>runtime</scope>
|
|
|
|
|
|
</dependency>
|
2025-12-03 10:51:26 +08:00
|
|
|
|
|
|
|
|
|
|
<!-- 4. 其他依赖(确保版本兼容 2.1.1,无冲突) -->
|
2025-11-27 17:01:07 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>tk.mybatis</groupId>
|
|
|
|
|
|
<artifactId>mapper</artifactId>
|
|
|
|
|
|
<version>4.1.5</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
|
|
|
<artifactId>poi</artifactId>
|
2025-12-03 10:51:26 +08:00
|
|
|
|
<version>${poi.version}</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
|
|
|
<artifactId>poi-ooxml</artifactId>
|
|
|
|
|
|
<version>${poi.version}</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.jcraft</groupId>
|
|
|
|
|
|
<artifactId>jsch</artifactId>
|
|
|
|
|
|
<version>0.1.55</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!-- JAXB 依赖(Java 8 无需额外配置,若有问题可保留) -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>javax.xml.bind</groupId>
|
|
|
|
|
|
<artifactId>jaxb-api</artifactId>
|
|
|
|
|
|
<version>2.3.0</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.sun.xml.bind</groupId>
|
|
|
|
|
|
<artifactId>jaxb-impl</artifactId>
|
|
|
|
|
|
<version>2.3.0</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.sun.xml.bind</groupId>
|
|
|
|
|
|
<artifactId>jaxb-core</artifactId>
|
|
|
|
|
|
<version>2.3.0</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!-- 其余依赖(lombok、swagger、httpclient 等)保留不变,确保无版本冲突 -->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>io.swagger</groupId>
|
|
|
|
|
|
<artifactId>swagger-annotations</artifactId>
|
|
|
|
|
|
<version>1.6.2</version>
|
|
|
|
|
|
<scope>compile</scope>
|
2025-11-27 17:01:07 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
<!-- poi -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
|
|
|
<artifactId>poi-ooxml</artifactId>
|
2025-12-03 10:51:26 +08:00
|
|
|
|
<version>3.17</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!--mysql-ssh-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.jcraft</groupId>
|
|
|
|
|
|
<artifactId>jsch</artifactId>
|
|
|
|
|
|
<version>0.1.55</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>javax.xml.bind</groupId>
|
|
|
|
|
|
<artifactId>jaxb-api</artifactId>
|
|
|
|
|
|
<version>2.3.0</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.sun.xml.bind</groupId>
|
|
|
|
|
|
<artifactId>jaxb-impl</artifactId>
|
|
|
|
|
|
<version>2.3.0</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.sun.xml.bind</groupId>
|
|
|
|
|
|
<artifactId>jaxb-core</artifactId>
|
|
|
|
|
|
<version>2.3.0</version>
|
2025-11-27 17:01:07 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
2025-12-03 10:51:26 +08:00
|
|
|
|
<version>3.9</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!-- poi -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
|
|
|
<artifactId>poi</artifactId>
|
|
|
|
|
|
<version>3.11</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!-- poi -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
|
|
|
<artifactId>poi-ooxml</artifactId>
|
|
|
|
|
|
<version>3.11</version>
|
2025-11-27 17:01:07 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
|
|
<version>1.4</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>commons-fileupload</groupId>
|
|
|
|
|
|
<artifactId>commons-fileupload</artifactId>
|
|
|
|
|
|
<version>1.3</version>
|
|
|
|
|
|
</dependency>
|
2025-12-03 10:51:26 +08:00
|
|
|
|
|
2025-11-27 17:01:07 +08:00
|
|
|
|
<!-- json 解析 -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
|
|
<artifactId>fastjson</artifactId>
|
|
|
|
|
|
<version>1.2.28</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!-- junit -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!-- webService jar -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>javax.xml.rpc</groupId>
|
|
|
|
|
|
<artifactId>javax.xml.rpc-api</artifactId>
|
|
|
|
|
|
<version>1.1.1</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.apache.axis</groupId>
|
|
|
|
|
|
<artifactId>axis</artifactId>
|
|
|
|
|
|
<version>1.4</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
|
|
<version>1.2</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>commons-discovery</groupId>
|
|
|
|
|
|
<artifactId>commons-discovery</artifactId>
|
|
|
|
|
|
<version>0.5</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>wsdl4j</groupId>
|
|
|
|
|
|
<artifactId>wsdl4j</artifactId>
|
|
|
|
|
|
<version>1.6.2</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>ws.schild</groupId>
|
|
|
|
|
|
<artifactId>jave-core</artifactId>
|
|
|
|
|
|
<version>2.4.5</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>ws.schild</groupId>
|
|
|
|
|
|
<artifactId>jave-native-win64</artifactId>
|
|
|
|
|
|
<version>2.4.5</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>ws.schild</groupId>
|
|
|
|
|
|
<artifactId>jave-native-linux64</artifactId>
|
|
|
|
|
|
<version>2.4.5</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
2025-12-03 10:51:26 +08:00
|
|
|
|
<groupId>cn.afterturn</groupId>
|
|
|
|
|
|
<artifactId>easypoi-base</artifactId>
|
|
|
|
|
|
<version>4.5.0</version>
|
2025-11-27 17:01:07 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
2025-12-03 10:51:26 +08:00
|
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
|
|
<artifactId>hibernate-validator</artifactId>
|
|
|
|
|
|
<version>6.0.18.Final</version>
|
2025-11-27 17:01:07 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
2025-12-03 10:51:26 +08:00
|
|
|
|
<groupId>org.freemarker</groupId>
|
|
|
|
|
|
<artifactId>freemarker</artifactId>
|
|
|
|
|
|
<version>2.3.30</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.aspose.words</groupId>
|
|
|
|
|
|
<artifactId>aspose-words</artifactId>
|
|
|
|
|
|
<version>15.8.0</version>
|
2025-11-27 17:01:07 +08:00
|
|
|
|
</dependency>
|
2025-12-03 10:51:26 +08:00
|
|
|
|
<!--pdf辅助-->
|
2025-11-27 17:01:07 +08:00
|
|
|
|
<dependency>
|
2025-12-03 10:51:26 +08:00
|
|
|
|
<groupId>com.itextpdf</groupId>
|
|
|
|
|
|
<artifactId>itextpdf</artifactId>
|
|
|
|
|
|
<version>5.5.10</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.itextpdf</groupId>
|
|
|
|
|
|
<artifactId>itext-asian</artifactId>
|
|
|
|
|
|
<version>5.2.0</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.github.pagehelper</groupId>
|
|
|
|
|
|
<artifactId>pagehelper</artifactId>
|
|
|
|
|
|
<version>5.2.0</version>
|
2025-11-27 17:01:07 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.github.pagehelper</groupId>
|
|
|
|
|
|
<artifactId>pagehelper-spring-boot-starter</artifactId>
|
|
|
|
|
|
<version>1.3.0</version>
|
|
|
|
|
|
</dependency>
|
2025-12-03 10:51:26 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.jetbrains</groupId>
|
|
|
|
|
|
<artifactId>annotations</artifactId>
|
|
|
|
|
|
<version>13.0</version>
|
|
|
|
|
|
<scope>compile</scope>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
|
<artifactId>commons-compress</artifactId>
|
|
|
|
|
|
<version>1.19</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
|
|
<artifactId>httpclient</artifactId>
|
|
|
|
|
|
<version>4.5.5</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!--okhttp3-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
|
|
|
|
<artifactId>okhttp</artifactId>
|
|
|
|
|
|
<version>3.10.0</version>
|
|
|
|
|
|
</dependency>
|
2025-11-27 17:01:07 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
|
|
|
<artifactId>hutool-all</artifactId>
|
2025-12-03 10:51:26 +08:00
|
|
|
|
<version>5.3.2</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>io.springfox</groupId>
|
|
|
|
|
|
<artifactId>springfox-swagger2</artifactId>
|
|
|
|
|
|
<version>2.8.0</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!--jackson core-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.codehaus.jackson</groupId>
|
|
|
|
|
|
<artifactId>jackson-core-asl</artifactId>
|
|
|
|
|
|
<version>1.9.13</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!--jackson mapper-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.codehaus.jackson</groupId>
|
|
|
|
|
|
<artifactId>jackson-mapper-asl</artifactId>
|
|
|
|
|
|
<version>1.9.13</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.monitorjbl</groupId>
|
|
|
|
|
|
<artifactId>xlsx-streamer</artifactId>
|
|
|
|
|
|
<version>2.1.0</version>
|
2025-11-27 17:01:07 +08:00
|
|
|
|
</dependency>
|
2025-12-16 09:57:41 +08:00
|
|
|
|
<!--隔离装置驱动-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>sgjdbc</groupId>
|
|
|
|
|
|
<artifactId>sgjdbc</artifactId>
|
|
|
|
|
|
<version>5870</version>
|
|
|
|
|
|
<scope>system</scope>
|
|
|
|
|
|
<systemPath>${basedir}/libs/sgjdbc-V4.3.21.1-build-20240801.5870.jar</systemPath>
|
|
|
|
|
|
</dependency>
|
2025-11-27 17:01:07 +08:00
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
|
|
<build>
|
2025-12-16 09:57:41 +08:00
|
|
|
|
<finalName>bonus-realname-web</finalName>
|
2025-11-27 17:01:07 +08:00
|
|
|
|
<plugins>
|
|
|
|
|
|
<plugin>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
2025-12-03 10:51:26 +08:00
|
|
|
|
<!-- 强制指定插件版本与 Spring Boot 一致(避免插件版本冲突) -->
|
|
|
|
|
|
<version>2.1.1.RELEASE</version>
|
2025-12-16 09:57:41 +08:00
|
|
|
|
<configuration>
|
|
|
|
|
|
<includeSystemScope>true</includeSystemScope>
|
|
|
|
|
|
</configuration>
|
2025-11-27 17:01:07 +08:00
|
|
|
|
</plugin>
|
|
|
|
|
|
<plugin>
|
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
2025-12-03 10:51:26 +08:00
|
|
|
|
<version>2.6</version>
|
2025-11-27 17:01:07 +08:00
|
|
|
|
<configuration>
|
|
|
|
|
|
<encoding>UTF-8</encoding>
|
|
|
|
|
|
</configuration>
|
|
|
|
|
|
</plugin>
|
2025-12-03 10:51:26 +08:00
|
|
|
|
<plugin>
|
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
|
|
<version>2.22.2</version>
|
|
|
|
|
|
<configuration>
|
|
|
|
|
|
<skipTests>true</skipTests>
|
|
|
|
|
|
</configuration>
|
|
|
|
|
|
</plugin>
|
|
|
|
|
|
<!-- 本地 jar 安装插件(保留) -->
|
|
|
|
|
|
<plugin>
|
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
|
<artifactId>maven-install-plugin</artifactId>
|
|
|
|
|
|
<version>2.5.2</version>
|
|
|
|
|
|
</plugin>
|
2025-11-27 17:01:07 +08:00
|
|
|
|
</plugins>
|
|
|
|
|
|
</build>
|
2025-12-03 10:51:26 +08:00
|
|
|
|
</project>
|