2025-10-16 09:19:15 +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">
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
|
|
<groupId>com.bonus</groupId>
|
|
|
|
|
<artifactId>bonus</artifactId>
|
|
|
|
|
<version>3.9.0</version>
|
|
|
|
|
|
|
|
|
|
<name>bonus</name>
|
|
|
|
|
<url>http://www.bonus.vip</url>
|
|
|
|
|
<description>智能投标系统</description>
|
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
<bonus.version>3.9.0</bonus.version>
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
|
<java.version>1.8</java.version>
|
|
|
|
|
<maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
|
|
|
|
|
<spring-boot.version>2.7.18</spring-boot.version>
|
|
|
|
|
<druid.version>1.2.23</druid.version>
|
|
|
|
|
<bitwalker.version>1.21</bitwalker.version>
|
|
|
|
|
<swagger.version>3.0.0</swagger.version>
|
|
|
|
|
<kaptcha.version>2.3.3</kaptcha.version>
|
|
|
|
|
<pagehelper.boot.version>1.4.7</pagehelper.boot.version>
|
|
|
|
|
<fastjson.version>2.0.57</fastjson.version>
|
|
|
|
|
<oshi.version>6.8.2</oshi.version>
|
|
|
|
|
<commons.io.version>2.19.0</commons.io.version>
|
|
|
|
|
<poi.version>4.1.2</poi.version>
|
|
|
|
|
<velocity.version>2.3</velocity.version>
|
|
|
|
|
<jwt.version>0.9.1</jwt.version>
|
|
|
|
|
<!-- override dependency version -->
|
|
|
|
|
<tomcat.version>9.0.108</tomcat.version>
|
|
|
|
|
<logback.version>1.2.13</logback.version>
|
|
|
|
|
<spring-security.version>5.7.12</spring-security.version>
|
|
|
|
|
<spring-framework.version>5.3.39</spring-framework.version>
|
|
|
|
|
<profiles.active>dev</profiles.active> <!-- 默认值 -->
|
|
|
|
|
<!-- 强制使用新的 MySQL 连接器坐标 -->
|
|
|
|
|
<mysql.connector-j.version>8.0.33</mysql.connector-j.version>
|
2025-10-16 15:59:56 +08:00
|
|
|
<minio.version>8.2.2</minio.version>
|
2025-11-04 13:24:33 +08:00
|
|
|
<commons-fileupload.version>1.4</commons-fileupload.version>
|
|
|
|
|
<io.jsonwebtoken.version>0.9.1</io.jsonwebtoken.version>
|
2025-11-14 15:51:45 +08:00
|
|
|
<amqp-client.version>5.16.0</amqp-client.version>
|
2025-10-16 09:19:15 +08:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<!-- 依赖声明 -->
|
|
|
|
|
<dependencyManagement>
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
|
|
<!-- 覆盖SpringFramework的依赖配置-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-framework-bom</artifactId>
|
|
|
|
|
<version>${spring-framework.version}</version>
|
|
|
|
|
<type>pom</type>
|
|
|
|
|
<scope>import</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- 覆盖SpringSecurity的依赖配置-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
|
<artifactId>spring-security-bom</artifactId>
|
|
|
|
|
<version>${spring-security.version}</version>
|
|
|
|
|
<type>pom</type>
|
|
|
|
|
<scope>import</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- SpringBoot的依赖配置-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-dependencies</artifactId>
|
|
|
|
|
<version>${spring-boot.version}</version>
|
|
|
|
|
<type>pom</type>
|
|
|
|
|
<scope>import</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- 覆盖logback的依赖配置-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
|
<artifactId>logback-core</artifactId>
|
|
|
|
|
<version>${logback.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
|
<artifactId>logback-classic</artifactId>
|
|
|
|
|
<version>${logback.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- 覆盖tomcat的依赖配置-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.tomcat.embed</groupId>
|
|
|
|
|
<artifactId>tomcat-embed-core</artifactId>
|
|
|
|
|
<version>${tomcat.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.tomcat.embed</groupId>
|
|
|
|
|
<artifactId>tomcat-embed-el</artifactId>
|
|
|
|
|
<version>${tomcat.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.tomcat.embed</groupId>
|
|
|
|
|
<artifactId>tomcat-embed-websocket</artifactId>
|
|
|
|
|
<version>${tomcat.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- 阿里数据库连接池 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
|
<artifactId>druid-spring-boot-starter</artifactId>
|
|
|
|
|
<version>${druid.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- 解析客户端操作系统、浏览器等 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>eu.bitwalker</groupId>
|
|
|
|
|
<artifactId>UserAgentUtils</artifactId>
|
|
|
|
|
<version>${bitwalker.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- pagehelper 分页插件 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.github.pagehelper</groupId>
|
|
|
|
|
<artifactId>pagehelper-spring-boot-starter</artifactId>
|
|
|
|
|
<version>${pagehelper.boot.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- 获取系统信息 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.github.oshi</groupId>
|
|
|
|
|
<artifactId>oshi-core</artifactId>
|
|
|
|
|
<version>${oshi.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- Swagger3依赖 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.springfox</groupId>
|
|
|
|
|
<artifactId>springfox-boot-starter</artifactId>
|
|
|
|
|
<version>${swagger.version}</version>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>io.swagger</groupId>
|
|
|
|
|
<artifactId>swagger-models</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- io常用工具类 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
|
<version>${commons.io.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- excel工具 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
|
|
<artifactId>poi-ooxml</artifactId>
|
|
|
|
|
<version>${poi.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- velocity代码生成使用模板 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.velocity</groupId>
|
|
|
|
|
<artifactId>velocity-engine-core</artifactId>
|
|
|
|
|
<version>${velocity.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- 阿里JSON解析器 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.alibaba.fastjson2</groupId>
|
|
|
|
|
<artifactId>fastjson2</artifactId>
|
|
|
|
|
<version>${fastjson.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- Token生成与解析-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.jsonwebtoken</groupId>
|
|
|
|
|
<artifactId>jjwt</artifactId>
|
|
|
|
|
<version>${jwt.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- 验证码 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>pro.fessional</groupId>
|
|
|
|
|
<artifactId>kaptcha</artifactId>
|
|
|
|
|
<version>${kaptcha.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- 定时任务-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.bonus</groupId>
|
|
|
|
|
<artifactId>bonus-quartz</artifactId>
|
|
|
|
|
<version>${bonus.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- 代码生成-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.bonus</groupId>
|
|
|
|
|
<artifactId>bonus-generator</artifactId>
|
|
|
|
|
<version>${bonus.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- 核心模块-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.bonus</groupId>
|
|
|
|
|
<artifactId>bonus-framework</artifactId>
|
|
|
|
|
<version>${bonus.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- 系统模块-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.bonus</groupId>
|
|
|
|
|
<artifactId>bonus-system</artifactId>
|
|
|
|
|
<version>${bonus.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- 通用工具-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.bonus</groupId>
|
|
|
|
|
<artifactId>bonus-common</artifactId>
|
|
|
|
|
<version>${bonus.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!--文件模块-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.bonus</groupId>
|
|
|
|
|
<artifactId>bonus-file</artifactId>
|
|
|
|
|
<version>${bonus.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!--rabbitmq模块-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.bonus</groupId>
|
|
|
|
|
<artifactId>bonus-rabbitmq</artifactId>
|
|
|
|
|
<version>${bonus.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2025-10-17 13:34:03 +08:00
|
|
|
<!--ocr模块-->
|
2025-10-16 09:19:15 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.bonus</groupId>
|
|
|
|
|
<artifactId>bonus-ocr</artifactId>
|
|
|
|
|
<version>${bonus.version}</version>
|
|
|
|
|
</dependency>
|
2025-10-17 13:34:03 +08:00
|
|
|
|
|
|
|
|
<!--主体库模块-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.bonus</groupId>
|
|
|
|
|
<artifactId>bonus-mainDatabase</artifactId>
|
|
|
|
|
<version>${bonus.version}</version>
|
|
|
|
|
</dependency>
|
2025-11-03 14:51:23 +08:00
|
|
|
|
|
|
|
|
<!--模板管理模块-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.bonus</groupId>
|
|
|
|
|
<artifactId>bonus-template</artifactId>
|
|
|
|
|
<version>${bonus.version}</version>
|
|
|
|
|
</dependency>
|
2025-11-04 13:24:33 +08:00
|
|
|
|
|
|
|
|
<!--招标解析-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.bonus</groupId>
|
|
|
|
|
<artifactId>bonus-analysis</artifactId>
|
|
|
|
|
<version>${bonus.version}</version>
|
|
|
|
|
</dependency>
|
2025-10-16 09:19:15 +08:00
|
|
|
</dependencies>
|
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
|
|
<modules>
|
|
|
|
|
<module>bonus-admin</module>
|
|
|
|
|
<module>bonus-framework</module>
|
|
|
|
|
<module>bonus-system</module>
|
|
|
|
|
<module>bonus-quartz</module>
|
|
|
|
|
<module>bonus-generator</module>
|
|
|
|
|
<module>bonus-common</module>
|
|
|
|
|
<module>bonus-file</module>
|
|
|
|
|
<module>bonus-rabbitmq</module>
|
|
|
|
|
<module>bonus-ocr</module>
|
2025-10-17 13:34:03 +08:00
|
|
|
<module>bonus-mainDatabase</module>
|
2025-11-03 14:51:23 +08:00
|
|
|
<module>bonus-template</module>
|
2025-11-04 13:24:33 +08:00
|
|
|
<module>bonus-analysis</module>
|
2025-10-16 09:19:15 +08:00
|
|
|
</modules>
|
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
|
<version>3.1</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<source>${java.version}</source>
|
|
|
|
|
<target>${java.version}</target>
|
|
|
|
|
<encoding>${project.build.sourceEncoding}</encoding>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
<resources>
|
|
|
|
|
<resource>
|
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
|
<filtering>true</filtering> <!-- 启用过滤 -->
|
|
|
|
|
<includes>
|
|
|
|
|
<include>**/application.yml</include>
|
|
|
|
|
<include>**/application.yaml</include>
|
|
|
|
|
</includes>
|
|
|
|
|
</resource>
|
|
|
|
|
<!-- 不过滤其他文件 -->
|
|
|
|
|
<resource>
|
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
|
<filtering>false</filtering>
|
|
|
|
|
<excludes>
|
|
|
|
|
<exclude>**/application.yml</exclude>
|
|
|
|
|
<exclude>**/application.yaml</exclude>
|
|
|
|
|
</excludes>
|
|
|
|
|
</resource>
|
|
|
|
|
</resources>
|
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
|
<repository>
|
|
|
|
|
<id>public</id>
|
|
|
|
|
<name>aliyun nexus</name>
|
|
|
|
|
<url>https://maven.aliyun.com/repository/public</url>
|
|
|
|
|
<releases>
|
|
|
|
|
<enabled>true</enabled>
|
|
|
|
|
</releases>
|
|
|
|
|
</repository>
|
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
|
|
<pluginRepositories>
|
|
|
|
|
<pluginRepository>
|
|
|
|
|
<id>public</id>
|
|
|
|
|
<name>aliyun nexus</name>
|
|
|
|
|
<url>https://maven.aliyun.com/repository/public</url>
|
|
|
|
|
<releases>
|
|
|
|
|
<enabled>true</enabled>
|
|
|
|
|
</releases>
|
|
|
|
|
<snapshots>
|
|
|
|
|
<enabled>false</enabled>
|
|
|
|
|
</snapshots>
|
|
|
|
|
</pluginRepository>
|
|
|
|
|
</pluginRepositories>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<profiles>
|
|
|
|
|
<!-- 开发环境 -->
|
|
|
|
|
<profile>
|
|
|
|
|
<id>dev</id>
|
|
|
|
|
<properties>
|
|
|
|
|
<profiles.active>dev</profiles.active>
|
|
|
|
|
</properties>
|
|
|
|
|
<activation>
|
|
|
|
|
<activeByDefault>true</activeByDefault>
|
|
|
|
|
</activation>
|
|
|
|
|
</profile>
|
|
|
|
|
|
|
|
|
|
<!-- 测试环境 -->
|
|
|
|
|
<profile>
|
|
|
|
|
<id>test</id>
|
|
|
|
|
<properties>
|
|
|
|
|
<profiles.active>test</profiles.active>
|
|
|
|
|
</properties>
|
|
|
|
|
<!-- <activation>-->
|
|
|
|
|
<!-- <activeByDefault>true</activeByDefault>-->
|
|
|
|
|
<!-- </activation>-->
|
|
|
|
|
</profile>
|
|
|
|
|
|
|
|
|
|
<!-- 生产环境 -->
|
|
|
|
|
<profile>
|
|
|
|
|
<id>prod</id>
|
|
|
|
|
<properties>
|
|
|
|
|
<profiles.active>prod</profiles.active>
|
|
|
|
|
</properties>
|
|
|
|
|
</profile>
|
|
|
|
|
</profiles>
|
|
|
|
|
|
|
|
|
|
</project>
|