<?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>
|
<version>2.1.6.RELEASE</version>
|
<relativePath/> <!-- lookup parent from repository -->
|
</parent>
|
<groupId>com.mzl.flower</groupId>
|
<artifactId>flower-backend</artifactId>
|
<version>0.0.1-SNAPSHOT</version>
|
<name>flower-backend</name>
|
<description>Demo project for Spring Boot</description>
|
|
<properties>
|
<java.version>1.8</java.version>
|
<mybatis-plus-boot-starter.version>3.1.2</mybatis-plus-boot-starter.version>
|
<druid-spring-boot-starter.version>1.1.18</druid-spring-boot-starter.version>
|
<springfox-swagger.version>2.9.2</springfox-swagger.version>
|
<io.swagger.version>1.5.22</io.swagger.version>
|
<base.version>1.0-SNAPSHOT</base.version>
|
<mybatis-plus.version>3.4.1</mybatis-plus.version>
|
</properties>
|
|
<dependencies>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-web</artifactId>
|
<exclusions>
|
<!--排除tomcat依赖-->
|
<exclusion>
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
<groupId>org.springframework.boot</groupId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
|
<!--undertow容器-->
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-undertow</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-webflux</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>org.projectlombok</groupId>
|
<artifactId>lombok</artifactId>
|
<version>1.18.20</version>
|
<scope>provided</scope>
|
<optional>true</optional>
|
</dependency>
|
|
<dependency>
|
<groupId>mysql</groupId>
|
<artifactId>mysql-connector-java</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>org.mybatis</groupId>
|
<artifactId>mybatis-typehandlers-jsr310</artifactId>
|
<version>1.0.1</version>
|
</dependency>
|
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>druid-spring-boot-starter</artifactId>
|
<version>${druid-spring-boot-starter.version}</version>
|
</dependency>
|
|
<dependency>
|
<groupId>com.baomidou</groupId>
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
<version>${mybatis-plus-boot-starter.version}</version>
|
</dependency>
|
|
<dependency>
|
<groupId>io.springfox</groupId>
|
<artifactId>springfox-swagger2</artifactId>
|
<version>${springfox-swagger.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>io.springfox</groupId>
|
<artifactId>springfox-swagger-ui</artifactId>
|
<version>${springfox-swagger.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>io.swagger</groupId>
|
<artifactId>swagger-annotations</artifactId>
|
<version>${io.swagger.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>io.swagger</groupId>
|
<artifactId>swagger-models</artifactId>
|
<version>${io.swagger.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-test</artifactId>
|
<scope>test</scope>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.security.oauth</groupId>
|
<artifactId>spring-security-oauth2</artifactId>
|
<version>2.3.6.RELEASE</version>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.commons</groupId>
|
<artifactId>commons-collections4</artifactId>
|
<version>4.2</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.commons</groupId>
|
<artifactId>commons-lang3</artifactId>
|
<version>3.8.1</version>
|
</dependency>
|
<dependency>
|
<groupId>cn.hutool</groupId>
|
<artifactId>hutool-all</artifactId>
|
<version>4.5.13</version>
|
</dependency>
|
|
<dependency>
|
<groupId>commons-httpclient</groupId>
|
<artifactId>commons-httpclient</artifactId>
|
<version>3.1</version>
|
</dependency>
|
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>fastjson</artifactId>
|
<version>1.2.32</version>
|
</dependency>
|
|
<dependency>
|
<groupId>redis.clients</groupId>
|
<artifactId>jedis</artifactId>
|
<version>3.3.0</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.apache.httpcomponents</groupId>
|
<artifactId>httpcore</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.httpcomponents</groupId>
|
<artifactId>httpclient</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.httpcomponents</groupId>
|
<artifactId>httpmime</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>commons-net</groupId>
|
<artifactId>commons-net</artifactId>
|
<version>3.1</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.apache.poi</groupId>
|
<artifactId>poi-ooxml</artifactId>
|
<version>4.1.2</version>
|
</dependency>
|
|
<dependency>
|
<groupId>commons-beanutils</groupId>
|
<artifactId>commons-beanutils</artifactId>
|
<version>1.9.4</version>
|
</dependency>
|
|
<dependency>
|
<groupId>dom4j</groupId>
|
<artifactId>dom4j</artifactId>
|
<version>1.6.1</version>
|
</dependency>
|
|
<dependency>
|
<groupId>com.github.whvcse</groupId>
|
<artifactId>easy-captcha</artifactId>
|
<version>1.6.2</version>
|
</dependency>
|
|
<dependency>
|
<groupId>io.jsonwebtoken</groupId>
|
<artifactId>jjwt-api</artifactId>
|
<version>0.11.2</version>
|
</dependency>
|
<dependency>
|
<groupId>io.jsonwebtoken</groupId>
|
<artifactId>jjwt-impl</artifactId>
|
<version>0.11.2</version>
|
<scope>runtime</scope>
|
</dependency>
|
<dependency>
|
<groupId>io.jsonwebtoken</groupId>
|
<artifactId>jjwt-jackson</artifactId>
|
<version>0.11.2</version>
|
<scope>runtime</scope>
|
</dependency>
|
|
<dependency>
|
<groupId>com.squareup.okhttp3</groupId>
|
<artifactId>okhttp</artifactId>
|
<version>3.14.8</version>
|
</dependency>
|
|
<dependency>
|
<groupId>com.hankcs</groupId>
|
<artifactId>hanlp</artifactId>
|
<version>portable-1.6.6</version>
|
</dependency>
|
|
<dependency>
|
<groupId>com.aliyun.oss</groupId>
|
<artifactId>aliyun-sdk-oss</artifactId>
|
<version>3.17.4</version>
|
</dependency>
|
|
<dependency>
|
<groupId>com.github.binarywang</groupId>
|
<artifactId>wx-java-miniapp-spring-boot-starter</artifactId>
|
<version>4.1.0</version>
|
</dependency>
|
<dependency>
|
<groupId>com.github.binarywang</groupId>
|
<artifactId>wx-java-mp-spring-boot-starter</artifactId>
|
<version>4.1.0</version>
|
</dependency>
|
<dependency>
|
<groupId>com.aliyuncs</groupId>
|
<artifactId>core</artifactId>
|
<version>1</version>
|
</dependency>
|
<dependency>
|
<groupId>com.aliyuncs</groupId>
|
<artifactId>dysmsapi</artifactId>
|
<version>1</version>
|
</dependency>
|
|
<dependency>
|
<groupId>com.github.wechatpay-apiv3</groupId>
|
<artifactId>wechatpay-java</artifactId>
|
<version>0.2.12</version>
|
</dependency>
|
<dependency>
|
<groupId>org.aspectj</groupId>
|
<artifactId>aspectjweaver</artifactId>
|
<version>1.9.7</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.redisson</groupId>
|
<artifactId>redisson</artifactId>
|
<version>3.15.6</version> <!-- 确保使用与你的 Spring Boot 版本兼容的 Redisson 版本 -->
|
</dependency>
|
|
<dependency>
|
<groupId>net.sf.json-lib</groupId>
|
<artifactId>json-lib</artifactId>
|
<version>2.4</version>
|
<classifier>jdk15</classifier>
|
</dependency>
|
<dependency>
|
<groupId>com.aliyun</groupId>
|
<artifactId>dysmsapi20170525</artifactId>
|
<version>3.1.0</version>
|
</dependency>
|
|
|
<!-- https://mvnrepository.com/artifact/com.alipay.sdk/alipay-sdk-java -->
|
<dependency>
|
<groupId>com.alipay.sdk</groupId>
|
<artifactId>alipay-sdk-java</artifactId>
|
<version>4.40.82.ALL</version>
|
</dependency>
|
|
<dependency>
|
<groupId>com.github.binarywang</groupId>
|
<artifactId>weixin-java-pay</artifactId>
|
<version>4.6.0</version>
|
</dependency>
|
|
|
<!-- https://mvnrepository.com/artifact/com.github.wechatpay-apiv3/wechatpay-java -->
|
<!-- <dependency>-->
|
<!-- <groupId>com.github.wechatpay-apiv3</groupId>-->
|
<!-- <artifactId>wechatpay-java</artifactId>-->
|
<!-- <version>0.2.15</version>-->
|
<!-- </dependency>-->
|
|
|
<dependency>
|
<groupId>com.volcengine</groupId>
|
<artifactId>ve-tos-java-sdk</artifactId>
|
<version>2.8.8</version>
|
</dependency>
|
|
<dependency>
|
<groupId>com.volcengine</groupId>
|
<artifactId>volc-sdk-java</artifactId>
|
<version>1.0.105</version>
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
<build>
|
<plugins>
|
<plugin>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
</plugin>
|
<plugin>
|
<groupId>org.apache.maven.plugins</groupId>
|
<artifactId>maven-resources-plugin</artifactId>
|
<executions>
|
<execution>
|
<id>default-resources</id>
|
<phase>validate</phase>
|
<goals>
|
<goal>copy-resources</goal>
|
</goals>
|
<configuration>
|
<outputDirectory>target/classes</outputDirectory>
|
<useDefaultDelimiters>false</useDefaultDelimiters>
|
<delimiters>
|
<delimiter>#</delimiter>
|
</delimiters>
|
<resources>
|
<resource>
|
<directory>src/main/resources/</directory>
|
<filtering>true</filtering>
|
<includes>
|
<include>*.yml</include>
|
</includes>
|
</resource>
|
<resource>
|
<directory>src/main/resources/</directory>
|
<filtering>false</filtering>
|
<excludes>
|
<exclude>*.yml</exclude>
|
</excludes>
|
</resource>
|
</resources>
|
</configuration>
|
</execution>
|
</executions>
|
</plugin>
|
</plugins>
|
</build>
|
<profiles>
|
<profile>
|
<id>local</id>
|
<activation>
|
<activeByDefault>true</activeByDefault>
|
</activation>
|
<properties>
|
<spring.profiles.active>local,swagger</spring.profiles.active>
|
</properties>
|
</profile>
|
<profile>
|
<id>dev</id>
|
<properties>
|
<spring.profiles.active>dev,swagger</spring.profiles.active>
|
</properties>
|
</profile>
|
<profile>
|
<id>test</id>
|
<properties>
|
<spring.profiles.active>test,swagger</spring.profiles.active>
|
</properties>
|
</profile>
|
<profile>
|
<id>prod</id>
|
<properties>
|
<spring.profiles.active>prod</spring.profiles.active>
|
</properties>
|
</profile>
|
</profiles>
|
|
</project>
|