2024-04-15 11:16:42 +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>
|
2024-05-09 14:59:46 +08:00
|
|
|
|
<version>2.5.4</version>
|
2024-04-15 11:16:42 +08:00
|
|
|
|
<relativePath/> <!-- lookup parent from repository -->
|
|
|
|
|
</parent>
|
|
|
|
|
<groupId>com.cn.tenlion.aishop</groupId>
|
|
|
|
|
<artifactId>system_aishop</artifactId>
|
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
|
<name>system_aishop</name>
|
|
|
|
|
<description>system_aishop</description>
|
|
|
|
|
<properties>
|
2024-04-15 11:57:29 +08:00
|
|
|
|
<java.version>1.8</java.version>
|
|
|
|
|
<spring-mybatis.version>2.1.4</spring-mybatis.version>
|
|
|
|
|
<mysql.version>8.0.22</mysql.version>
|
|
|
|
|
<druid.version>1.1.9</druid.version>
|
2024-04-15 11:16:42 +08:00
|
|
|
|
</properties>
|
|
|
|
|
<dependencies>
|
2025-06-27 18:31:32 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.volcengine</groupId>
|
|
|
|
|
<artifactId>volc-sdk-java</artifactId>
|
|
|
|
|
<version>1.0.224</version>
|
|
|
|
|
</dependency>
|
2025-06-05 12:16:44 +08:00
|
|
|
|
<!-- 确保使用一致的 Swagger2 依赖 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.springfox</groupId>
|
|
|
|
|
<artifactId>springfox-swagger2</artifactId>
|
|
|
|
|
<version>3.0.0</version> <!-- 或稳定版本 -->
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.springfox</groupId>
|
|
|
|
|
<artifactId>springfox-swagger-ui</artifactId>
|
|
|
|
|
<version>3.0.0</version>
|
|
|
|
|
</dependency>
|
2025-05-23 17:02:18 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-test</artifactId>
|
|
|
|
|
</dependency>
|
2024-04-15 11:16:42 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
2024-04-15 11:57:29 +08:00
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-freemarker</artifactId>
|
|
|
|
|
</dependency>
|
2024-05-09 14:59:46 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2024-04-15 11:57:29 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
|
|
<version>${mysql.version}</version>
|
|
|
|
|
<scope>runtime</scope>
|
2024-04-15 11:16:42 +08:00
|
|
|
|
</dependency>
|
2024-04-15 11:57:29 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.mybatis.spring.boot</groupId>
|
|
|
|
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
|
|
|
|
<version>${spring-mybatis.version}</version>
|
|
|
|
|
</dependency>
|
2025-05-28 09:18:08 +08:00
|
|
|
|
<!-- <dependency>
|
2024-04-15 11:57:29 +08:00
|
|
|
|
<groupId>ink.wgink</groupId>
|
|
|
|
|
<artifactId>module-sms</artifactId>
|
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
2025-05-28 09:18:08 +08:00
|
|
|
|
</dependency>-->
|
|
|
|
|
|
2025-05-23 17:02:18 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.com.tenlion</groupId>
|
|
|
|
|
<artifactId>module-freemarker</artifactId>
|
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
2025-05-28 09:18:08 +08:00
|
|
|
|
<scope>compile</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.com.tenlion</groupId>
|
|
|
|
|
<artifactId>module-project-config</artifactId>
|
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
2025-05-23 17:02:18 +08:00
|
|
|
|
<scope>compile</scope>
|
|
|
|
|
</dependency>
|
2024-04-15 11:57:29 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>ink.wgink</groupId>
|
2025-05-23 17:02:18 +08:00
|
|
|
|
<artifactId>redis-cache</artifactId>
|
2024-04-15 11:57:29 +08:00
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
2025-05-23 17:02:18 +08:00
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<artifactId>poi-ooxml-schemas</artifactId>
|
|
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
2024-04-15 11:57:29 +08:00
|
|
|
|
</dependency>
|
2025-05-23 17:02:18 +08:00
|
|
|
|
|
2024-04-15 11:57:29 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>ink.wgink</groupId>
|
2024-05-09 14:59:46 +08:00
|
|
|
|
<artifactId>module-file</artifactId>
|
2024-04-15 11:57:29 +08:00
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
2025-05-23 17:02:18 +08:00
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
|
|
<artifactId>poi-ooxml-schemas</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>ink.wgink</groupId>
|
|
|
|
|
<artifactId>module-dictionary</artifactId>
|
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
2024-04-15 11:57:29 +08:00
|
|
|
|
</dependency>
|
2025-05-23 17:02:18 +08:00
|
|
|
|
<!-- OAuth2客户端 -->
|
2024-04-15 11:57:29 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>ink.wgink</groupId>
|
2024-05-09 14:59:46 +08:00
|
|
|
|
<artifactId>login-oauth2-client</artifactId>
|
2024-04-15 11:57:29 +08:00
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2025-05-23 17:02:18 +08:00
|
|
|
|
<!-- 用于实现对APP的的管理,包含了APP的token管理,token格式的校验 -->
|
2024-04-15 11:57:29 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>ink.wgink</groupId>
|
2025-05-23 17:02:18 +08:00
|
|
|
|
<artifactId>basic-app</artifactId>
|
2024-04-15 11:57:29 +08:00
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
|
</dependency>
|
2025-05-23 17:02:18 +08:00
|
|
|
|
<!-- Tesseract OCR -->
|
2024-04-15 11:57:29 +08:00
|
|
|
|
<dependency>
|
2024-05-09 14:59:46 +08:00
|
|
|
|
<groupId>net.sourceforge.tess4j</groupId>
|
|
|
|
|
<artifactId>tess4j</artifactId>
|
|
|
|
|
<version>5.4.0</version>
|
2024-04-15 11:57:29 +08:00
|
|
|
|
</dependency>
|
2025-05-23 17:02:18 +08:00
|
|
|
|
<!-- 图像处理库(可选,用于预处理) -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.openpnp</groupId>
|
|
|
|
|
<artifactId>opencv</artifactId>
|
|
|
|
|
<version>4.5.5-1</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
|
</dependency>
|
2024-04-15 11:16:42 +08:00
|
|
|
|
</dependencies>
|
|
|
|
|
|
2024-05-09 14:59:46 +08:00
|
|
|
|
|
2024-04-15 11:16:42 +08:00
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
2024-04-15 11:57:29 +08:00
|
|
|
|
<plugin>
|
|
|
|
|
<!-- 打包时去除第三方依赖 -->
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
<configuration>
|
|
|
|
|
<layout>ZIP</layout>
|
|
|
|
|
<includes>
|
|
|
|
|
<include>
|
|
|
|
|
<groupId>non-exists</groupId>
|
|
|
|
|
<artifactId>non-exists</artifactId>
|
|
|
|
|
</include>
|
|
|
|
|
</includes>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
<!-- 拷贝第三方依赖文件到指定目录 -->
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>copy-dependencies</id>
|
|
|
|
|
<phase>package</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>copy-dependencies</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<configuration>
|
|
|
|
|
<!-- target/lib 是依赖jar包的输出目录,根据自己喜好配置 -->
|
|
|
|
|
<outputDirectory>target/lib</outputDirectory>
|
|
|
|
|
<excludeTransitive>false</excludeTransitive>
|
|
|
|
|
<stripVersion>false</stripVersion>
|
|
|
|
|
<includeScope>runtime</includeScope>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
<!-- 排除静态资源,静态资源自行拷贝 -->
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
|
<configuration>
|
|
|
|
|
<excludes>
|
|
|
|
|
<exclude>**/*.properties</exclude>
|
|
|
|
|
<exclude>**/*.xml</exclude>
|
|
|
|
|
<exclude>**/*.yml</exclude>
|
|
|
|
|
<exclude>static/**</exclude>
|
|
|
|
|
<exclude>templates/**</exclude>
|
|
|
|
|
<exclude>mybatis/**</exclude>
|
|
|
|
|
</excludes>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2024-04-15 11:16:42 +08:00
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
2024-04-15 11:57:29 +08:00
|
|
|
|
<configuration>
|
|
|
|
|
<includeSystemScope>true</includeSystemScope>
|
|
|
|
|
<excludes>
|
|
|
|
|
<exclude>
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
|
</exclude>
|
|
|
|
|
</excludes>
|
|
|
|
|
</configuration>
|
2024-04-15 11:16:42 +08:00
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
</project>
|