385 lines
14 KiB
XML
385 lines
14 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
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>
|
|
|
|
<groupId>com.suisung.mall</groupId>
|
|
<artifactId>mall-shop</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>mall-shop</name>
|
|
<description>Demo project for Spring Boot</description>
|
|
|
|
<parent>
|
|
<groupId>com.suisung.mall</groupId>
|
|
<artifactId>mall-suite</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
|
|
<dependencies>
|
|
<!-- mp3文件支持(如语音时长)-->
|
|
<dependency>
|
|
<groupId>org</groupId>
|
|
<artifactId>jaudiotagger</artifactId>
|
|
<version>2.0.1</version>
|
|
</dependency>
|
|
<!-- mp4文件支持(如语音时长)-->
|
|
<dependency>
|
|
<groupId>com.googlecode.mp4parser</groupId>
|
|
<artifactId>isoparser</artifactId>
|
|
<version>1.1.22</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.github.biezhi</groupId>
|
|
<artifactId>TinyPinyin</artifactId>
|
|
<version>2.0.3.RELEASE</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.zxing</groupId>
|
|
<artifactId>core</artifactId>
|
|
<version>3.4.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-alibaba-seata</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.seata</groupId>
|
|
<artifactId>seata-spring-boot-starter</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-openfeign</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.github.openfeign</groupId>
|
|
<artifactId>feign-okhttp</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.suisung.mall</groupId>
|
|
<artifactId>mall-common</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-freemarker</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>springloaded</artifactId>
|
|
<version>1.2.8.RELEASE</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<!-- 定时任务 -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-quartz</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-context-support</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.mchange</groupId>
|
|
<artifactId>c3p0</artifactId>
|
|
<version>0.9.5.2</version>
|
|
</dependency>
|
|
<!-- 邮箱 -->
|
|
<dependency>
|
|
<groupId>com.sun.mail</groupId>
|
|
<artifactId>javax.mail</artifactId>
|
|
<version>1.6.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>de.codecentric</groupId>
|
|
<artifactId>spring-boot-admin-starter-client</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-aop</artifactId>
|
|
</dependency>
|
|
|
|
<!-- App推送 -->
|
|
<!-- https://mvnrepository.com/artifact/com.getui.push/restful-sdk -->
|
|
<dependency>
|
|
<groupId>com.getui.push</groupId>
|
|
<artifactId>restful-sdk</artifactId>
|
|
<version>1.0.0.6</version>
|
|
</dependency>
|
|
<!-- JavaCV库 -->
|
|
<dependency>
|
|
<groupId>org.bytedeco</groupId>
|
|
<artifactId>javacv</artifactId>
|
|
<version>1.5.6</version>
|
|
</dependency>
|
|
<!-- 引入常用windows和linux平台 其他平台用到时在引入 -->
|
|
<dependency>
|
|
<groupId>org.bytedeco</groupId>
|
|
<artifactId>ffmpeg</artifactId>
|
|
<version>4.4-1.5.6</version>
|
|
<classifier>windows-x86_64</classifier>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.bytedeco</groupId>
|
|
<artifactId>ffmpeg</artifactId>
|
|
<version>4.4-1.5.6</version>
|
|
<classifier>linux-x86_64</classifier>
|
|
</dependency>
|
|
<!-- rabbitMQ消息队列 -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-amqp</artifactId>
|
|
</dependency>
|
|
<!-- jsoup -->
|
|
<dependency>
|
|
<groupId>org.jsoup</groupId>
|
|
<artifactId>jsoup</artifactId>
|
|
<version>1.8.3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.qcloud</groupId>
|
|
<artifactId>cos_api</artifactId>
|
|
<version>5.6.8</version>
|
|
<!--排除这个slf4j-log4j12-->
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/com.qcloud/qcloud-java-sdk -->
|
|
<dependency>
|
|
<groupId>com.qcloud</groupId>
|
|
<artifactId>qcloud-java-sdk</artifactId>
|
|
<version>2.0.1</version>
|
|
</dependency>
|
|
|
|
|
|
<!--https://blog.csdn.net/qianlingo/article/details/107914871-->
|
|
<!--百度人脸识别API-->
|
|
<dependency>
|
|
<groupId>com.baidu.aip</groupId>
|
|
<artifactId>java-sdk</artifactId>
|
|
<version>4.16.17</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-simple</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<!-- ip库-->
|
|
<dependency>
|
|
<groupId>org.lionsoul</groupId>
|
|
<artifactId>ip2region</artifactId>
|
|
<version>2.7.0</version>
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.gavaghan/geodesy -->
|
|
<dependency>
|
|
<groupId>org.gavaghan</groupId>
|
|
<artifactId>geodesy</artifactId>
|
|
<version>1.1.3</version>
|
|
</dependency>
|
|
|
|
<!--打票机 使用的库 开始-->
|
|
<!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
|
|
<dependency>
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
<artifactId>httpclient</artifactId>
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient-win -->
|
|
<dependency>
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
<artifactId>httpclient-win</artifactId>
|
|
<version>4.5.2</version>
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient-cache -->
|
|
<dependency>
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
<artifactId>httpclient-cache</artifactId>
|
|
<version>4.5.2</version>
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/commons-codec/commons-codec -->
|
|
<dependency>
|
|
<groupId>commons-codec</groupId>
|
|
<artifactId>commons-codec</artifactId>
|
|
<version>1.11</version>
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpcore -->
|
|
<dependency>
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
<artifactId>httpcore</artifactId>
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpmime -->
|
|
<dependency>
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
<artifactId>httpmime</artifactId>
|
|
<version>4.5.2</version>
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/net.java.dev.jna/jna -->
|
|
<dependency>
|
|
<groupId>net.java.dev.jna</groupId>
|
|
<artifactId>jna</artifactId>
|
|
<version>4.1.0</version>
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/net.java.dev.jna/jna-platform -->
|
|
<dependency>
|
|
<groupId>net.java.dev.jna</groupId>
|
|
<artifactId>jna-platform</artifactId>
|
|
<version>4.1.0</version>
|
|
</dependency>
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/commons-logging/commons-logging -->
|
|
<dependency>
|
|
<groupId>commons-logging</groupId>
|
|
<artifactId>commons-logging</artifactId>
|
|
<version>1.2</version>
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/fluent-hc -->
|
|
<dependency>
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
<artifactId>fluent-hc</artifactId>
|
|
<version>4.5.2</version>
|
|
</dependency>
|
|
|
|
<!--打票机 使用的库 结束-->
|
|
<dependency>
|
|
<groupId>com.microsoft.sqlserver</groupId>
|
|
<artifactId>mssql-jdbc</artifactId>
|
|
<version>9.4.1.jre8</version> <!-- 或者使用合适的版本 -->
|
|
</dependency>
|
|
|
|
<!--拉卡拉支付与分账 开始-->
|
|
<dependency>
|
|
<groupId>com.lkl.laop.sdk</groupId>
|
|
<artifactId>lkl-laop-java-sdk</artifactId>
|
|
<version>1.0.7</version>
|
|
<systemPath>${project.basedir}/src/main/resources/lib/lkl-java-sdk-1.0.7.jar</systemPath>
|
|
<scope>system</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.javen205</groupId>
|
|
<artifactId>IJPay-Core</artifactId>
|
|
<version>2.8.0</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<!--拉卡拉支付与分账 结束-->
|
|
|
|
</dependencies>
|
|
|
|
<profiles>
|
|
<!--本地环境 -->
|
|
<profile>
|
|
<id>local</id>
|
|
<properties>
|
|
<profiles.active>local</profiles.active>
|
|
</properties>
|
|
<activation>
|
|
<activeByDefault>true</activeByDefault>
|
|
</activation>
|
|
</profile>
|
|
<!--开发环境 -->
|
|
<profile>
|
|
<id>dev</id>
|
|
<properties>
|
|
<profiles.active>dev</profiles.active>
|
|
</properties>
|
|
<activation>
|
|
<activeByDefault>false</activeByDefault>
|
|
</activation>
|
|
</profile>
|
|
<!--测试环境 -->
|
|
<profile>
|
|
<id>test</id>
|
|
<properties>
|
|
<profiles.active>test</profiles.active>
|
|
</properties>
|
|
</profile>
|
|
<!--uat环境 -->
|
|
<profile>
|
|
<id>uat</id>
|
|
<properties>
|
|
<profiles.active>uat</profiles.active>
|
|
</properties>
|
|
</profile>
|
|
<!--生产环境 -->
|
|
<profile>
|
|
<id>prod</id>
|
|
<properties>
|
|
<profiles.active>prod</profiles.active>
|
|
</properties>
|
|
</profile>
|
|
</profiles>
|
|
|
|
<build>
|
|
<resources>
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
<filtering>true</filtering>
|
|
<includes>
|
|
<include>data/**</include>
|
|
<include>font/**</include>
|
|
<include>i18n/**</include>
|
|
<include>static/**</include>
|
|
<include>templates/**</include>
|
|
<include>application.yml</include>
|
|
<include>bootstrap.yml</include>
|
|
<include>bootstrap-${profiles.active}.yml</include>
|
|
<include>**/*.xml</include>
|
|
</includes>
|
|
</resource>
|
|
</resources>
|
|
<finalName>${project.artifactId}</finalName>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>com.spotify</groupId>
|
|
<artifactId>docker-maven-plugin</artifactId>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
<version>3.1.0</version>
|
|
<configuration>
|
|
<nonFilteredFileExtensions>
|
|
<nonFilteredFileExtension>ttf</nonFilteredFileExtension>
|
|
<nonFilteredFileExtension>ttc</nonFilteredFileExtension>
|
|
</nonFilteredFileExtensions>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|