|
@@ -0,0 +1,348 @@
|
|
|
|
|
+<?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.saleshelper</groupId>
|
|
|
|
|
+ <artifactId>salesHelper</artifactId>
|
|
|
|
|
+ <version>3.8.7</version>
|
|
|
|
|
+
|
|
|
|
|
+ <name>salesHelper</name>
|
|
|
|
|
+ <url>http://www.saleshelper.vip</url>
|
|
|
|
|
+ <description>销售助手</description>
|
|
|
|
|
+
|
|
|
|
|
+ <properties>
|
|
|
|
|
+ <salesHelper.version>3.8.7</salesHelper.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>
|
|
|
|
|
+ <druid.version>1.2.20</druid.version>
|
|
|
|
|
+ <bitwalker.version>1.21</bitwalker.version>
|
|
|
|
|
+ <swagger.fox.version>3.0.0</swagger.fox.version>
|
|
|
|
|
+ <swagger.core.version>1.6.2</swagger.core.version>
|
|
|
|
|
+ <kaptcha.version>2.3.3</kaptcha.version>
|
|
|
|
|
+ <pagehelper.boot.version>1.4.7</pagehelper.boot.version>
|
|
|
|
|
+ <fastjson.version>2.0.43</fastjson.version>
|
|
|
|
|
+ <oshi.version>6.4.13</oshi.version>
|
|
|
|
|
+ <commons.io.version>2.13.0</commons.io.version>
|
|
|
|
|
+ <poi.version>4.1.2</poi.version>
|
|
|
|
|
+ <velocity.version>2.3</velocity.version>
|
|
|
|
|
+ <jwt.version>0.9.1</jwt.version>
|
|
|
|
|
+ <mybatis-plus.version>3.5.2</mybatis-plus.version>
|
|
|
|
|
+ <lombok.version>1.18.24</lombok.version>
|
|
|
|
|
+ <hutool.version>5.7.6</hutool.version>
|
|
|
|
|
+ <pdfbox.version>3.0.0-RC1</pdfbox.version>
|
|
|
|
|
+ <itextpdf.version>7.1.16</itextpdf.version>
|
|
|
|
|
+ <jsoup.version>1.14.3</jsoup.version>
|
|
|
|
|
+ <spring-cloud.version>2021.0.8</spring-cloud.version>
|
|
|
|
|
+ <spring-cloud-alibaba.version>2021.0.5.0</spring-cloud-alibaba.version>
|
|
|
|
|
+ <minio.version>8.2.1</minio.version>
|
|
|
|
|
+ <ofdrw.version>1.17.18</ofdrw.version>
|
|
|
|
|
+ <mariadb.version>2.7.2</mariadb.version>
|
|
|
|
|
+ </properties>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- 依赖声明 -->
|
|
|
|
|
+ <dependencyManagement>
|
|
|
|
|
+ <dependencies>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- SpringBoot的依赖配置-->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
|
+ <artifactId>spring-boot-dependencies</artifactId>
|
|
|
|
|
+ <version>2.7.18</version>
|
|
|
|
|
+ <type>pom</type>
|
|
|
|
|
+ <scope>import</scope>
|
|
|
|
|
+ </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依赖 -->
|
|
|
|
|
+ <!-- Swagger 依赖配置 -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>io.swagger</groupId>
|
|
|
|
|
+ <artifactId>swagger-models</artifactId>
|
|
|
|
|
+ <version>${swagger.core.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>io.swagger</groupId>
|
|
|
|
|
+ <artifactId>swagger-annotations</artifactId>
|
|
|
|
|
+ <version>${swagger.core.version}</version>
|
|
|
|
|
+ </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.saleshelper</groupId>
|
|
|
|
|
+ <artifactId>salesHelper-quartz</artifactId>
|
|
|
|
|
+ <version>${salesHelper.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- 代码生成-->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.saleshelper</groupId>
|
|
|
|
|
+ <artifactId>salesHelper-generator</artifactId>
|
|
|
|
|
+ <version>${salesHelper.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- 核心模块-->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.saleshelper</groupId>
|
|
|
|
|
+ <artifactId>salesHelper-framework</artifactId>
|
|
|
|
|
+ <version>${salesHelper.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- 系统模块-->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.saleshelper</groupId>
|
|
|
|
|
+ <artifactId>salesHelper-system</artifactId>
|
|
|
|
|
+ <version>${salesHelper.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- 通用工具-->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.saleshelper</groupId>
|
|
|
|
|
+ <artifactId>salesHelper-common</artifactId>
|
|
|
|
|
+ <version>${salesHelper.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- admin共用模块-->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.saleshelper</groupId>
|
|
|
|
|
+ <artifactId>salesHelper-admin-common</artifactId>
|
|
|
|
|
+ <version>${salesHelper.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- 豫言模块-->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.yuyan</groupId>
|
|
|
|
|
+ <artifactId>salesHelper-yuyan</artifactId>
|
|
|
|
|
+ <version>${salesHelper.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.baomidou</groupId>
|
|
|
|
|
+ <artifactId>mybatis-plus-boot-starter</artifactId>
|
|
|
|
|
+ <version>${mybatis-plus.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.projectlombok</groupId>
|
|
|
|
|
+ <artifactId>lombok</artifactId>
|
|
|
|
|
+ <version>${lombok.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>cn.hutool</groupId>
|
|
|
|
|
+ <artifactId>hutool-all</artifactId>
|
|
|
|
|
+ <version>${hutool.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.apache.poi</groupId>
|
|
|
|
|
+ <artifactId>poi</artifactId>
|
|
|
|
|
+ <version>${poi.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.apache.poi</groupId>
|
|
|
|
|
+ <artifactId>poi-scratchpad</artifactId>
|
|
|
|
|
+ <version>${poi.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.apache.pdfbox</groupId>
|
|
|
|
|
+ <artifactId>pdfbox</artifactId>
|
|
|
|
|
+ <version>${pdfbox.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.itextpdf</groupId>
|
|
|
|
|
+ <artifactId>itext7-core</artifactId>
|
|
|
|
|
+ <version>${itextpdf.version}</version>
|
|
|
|
|
+ <type>pom</type>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.jsoup</groupId>
|
|
|
|
|
+ <artifactId>jsoup</artifactId>
|
|
|
|
|
+ <version>${jsoup.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>io.minio</groupId>
|
|
|
|
|
+ <artifactId>minio</artifactId>
|
|
|
|
|
+ <version>${minio.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!--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>
|
|
|
|
|
+ <version>${spring-cloud-alibaba.version}</version>
|
|
|
|
|
+ <type>pom</type>
|
|
|
|
|
+ <scope>import</scope>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.ofdrw</groupId>
|
|
|
|
|
+ <artifactId>ofdrw-converter</artifactId>
|
|
|
|
|
+ <version>${ofdrw.version}</version>
|
|
|
|
|
+ <exclusions>
|
|
|
|
|
+ <exclusion>
|
|
|
|
|
+ <groupId>org.apache.logging.log4j</groupId>
|
|
|
|
|
+ <artifactId>log4j-slf4j-impl</artifactId>
|
|
|
|
|
+ </exclusion>
|
|
|
|
|
+ </exclusions>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.ofdrw</groupId>
|
|
|
|
|
+ <artifactId>ofdrw-tool</artifactId>
|
|
|
|
|
+ <version>${ofdrw.version}</version>
|
|
|
|
|
+ <exclusions>
|
|
|
|
|
+ <exclusion>
|
|
|
|
|
+ <groupId>org.apache.logging.log4j</groupId>
|
|
|
|
|
+ <artifactId>log4j-slf4j-impl</artifactId>
|
|
|
|
|
+ </exclusion>
|
|
|
|
|
+ </exclusions>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.mariadb.jdbc</groupId>
|
|
|
|
|
+ <artifactId>mariadb-java-client</artifactId>
|
|
|
|
|
+ <version>${mariadb.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ </dependencies>
|
|
|
|
|
+ </dependencyManagement>
|
|
|
|
|
+
|
|
|
|
|
+ <modules>
|
|
|
|
|
+ <module>salesHelper-admin-common</module>
|
|
|
|
|
+ <module>salesHelper-admin-assistant</module>
|
|
|
|
|
+ <module>salesHelper-framework</module>
|
|
|
|
|
+ <module>salesHelper-system</module>
|
|
|
|
|
+ <module>salesHelper-quartz</module>
|
|
|
|
|
+ <module>salesHelper-generator</module>
|
|
|
|
|
+ <module>salesHelper-common</module>
|
|
|
|
|
+ <module>salesHelper-yuyan</module>
|
|
|
|
|
+ </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>
|
|
|
|
|
+ </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>
|
|
|
|
|
+
|
|
|
|
|
+</project>
|