<?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.3.6.RELEASE</version>
|
|
<relativePath/> <!-- lookup parent from repository -->
|
</parent>
|
<groupId>com.dg</groupId>
|
<artifactId>flower_city_automessage</artifactId>
|
<version>0.0.1-SNAPSHOT</version>
|
<name>flower_city_automessage</name>
|
<description>flower_city_automessage-backend</description>
|
<properties>
|
<java.version>8</java.version>
|
</properties>
|
<dependencies>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-web</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-devtools</artifactId>
|
<scope>runtime</scope>
|
<optional>true</optional>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
<optional>true</optional>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-test</artifactId>
|
<scope>test</scope>
|
</dependency>
|
<dependency>
|
<groupId>mysql</groupId>
|
<artifactId>mysql-connector-java</artifactId>
|
<version>8.0.13</version>
|
</dependency>
|
<dependency>
|
<groupId>com.baomidou</groupId>
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
<version>3.5.2</version>
|
</dependency>
|
<dependency>
|
<groupId>com.baomidou</groupId>
|
<artifactId>mybatis-plus-generator</artifactId>
|
<version>3.5.1</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.velocity</groupId>
|
<artifactId>velocity-engine-core</artifactId>
|
<version>2.2</version>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.projectlombok</groupId>
|
<artifactId>lombok</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.freemarker</groupId>
|
<artifactId>freemarker</artifactId>
|
<version>2.3.30</version>
|
</dependency>
|
|
<!-- 阿里短信 -->
|
<dependency>
|
<groupId>com.aliyun</groupId>
|
<artifactId>aliyun-java-sdk-core</artifactId>
|
<version>4.5.3</version>
|
</dependency>
|
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>fastjson</artifactId>
|
<version>1.2.74</version>
|
</dependency>
|
|
<!-- okhttp -->
|
<dependency>
|
<groupId>com.squareup.okhttp</groupId>
|
<artifactId>okhttp</artifactId>
|
<version>2.7.1</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.apache.poi</groupId>
|
<artifactId>poi-ooxml</artifactId>
|
<version>4.1.1</version>
|
<scope>compile</scope>
|
</dependency>
|
|
<dependency>
|
<groupId>org.apache.poi</groupId>
|
<artifactId>poi</artifactId>
|
<version>4.1.1</version>
|
</dependency>
|
|
|
<dependency>
|
<groupId>com.icexxx</groupId>
|
<artifactId>iceworkday</artifactId>
|
<version>2.0.2.0</version>
|
</dependency>
|
|
|
<dependency>
|
<groupId>cn.afterturn</groupId>
|
<artifactId>easypoi-annotation</artifactId>
|
<version>4.1.0</version>
|
</dependency>
|
|
<!-- hutool工具类 -->
|
<dependency>
|
<groupId>cn.hutool</groupId>
|
<artifactId>hutool-core</artifactId>
|
<version>5.6.7</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.python</groupId>
|
<artifactId>jython-standalone</artifactId>
|
<version>2.7.0</version>
|
</dependency>
|
|
|
<!-- https://mvnrepository.com/artifact/io.springfox/springfox-swagger2 -->
|
<dependency>
|
<groupId>io.springfox</groupId>
|
<artifactId>springfox-swagger2</artifactId>
|
<version>2.9.2</version>
|
</dependency>
|
<!-- https://mvnrepository.com/artifact/io.springfox/springfox-swagger-ui -->
|
<dependency>
|
<groupId>io.springfox</groupId>
|
<artifactId>springfox-swagger-ui</artifactId>
|
<version>2.9.2</version>
|
</dependency>
|
|
|
<!-- io常用工具类 -->
|
<dependency>
|
<groupId>commons-io</groupId>
|
<artifactId>commons-io</artifactId>
|
<version>2.11.0</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.apache.httpcomponents</groupId>
|
<artifactId>httpclient</artifactId>
|
</dependency>
|
|
|
<dependency>
|
<groupId>com.jcraft</groupId>
|
<artifactId>jsch</artifactId>
|
<version>0.1.53</version>
|
</dependency>
|
|
|
<dependency>
|
<groupId>io.jsonwebtoken</groupId>
|
<artifactId>jjwt</artifactId>
|
<version>0.9.1</version>
|
</dependency>
|
|
|
</dependencies>
|
|
|
<build>
|
<plugins>
|
<plugin>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
</plugin>
|
</plugins>
|
</build>
|
|
</project>
|