<?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>
|
<groupId>com</groupId>
|
<artifactId>hxzkMonitor</artifactId>
|
<version>0.0.1-SNAPSHOT</version>
|
<name>hxzkMonitor</name>
|
<description>hxzkMonitor</description>
|
<properties>
|
<java.version>1.8</java.version>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
<spring-boot.version>2.6.13</spring-boot.version>
|
</properties>
|
<dependencies>
|
<dependency>
|
<groupId>com.auth0</groupId>
|
<artifactId>java-jwt</artifactId>
|
<version>3.4.0</version>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-security</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>cloud.tianai.captcha</groupId>
|
<artifactId>tianai-captcha-springboot-starter</artifactId>
|
<version>1.5.1</version>
|
</dependency>
|
<dependency>
|
<groupId>org.freemarker</groupId>
|
<artifactId>freemarker</artifactId>
|
<version>2.3.28</version>
|
</dependency>
|
<!-- https://mvnrepository.com/artifact/com.github.pagehelper/pagehelper -->
|
<!-- <dependency>-->
|
<!-- <groupId>com.github.pagehelper</groupId>-->
|
<!-- <artifactId>pagehelper</artifactId>-->
|
<!-- <version>5.3.2</version>-->
|
<!-- </dependency>-->
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>fastjson</artifactId>
|
<version>1.2.47</version>
|
</dependency>
|
<!-- mybatis plus 代码生成器 -->
|
<dependency>
|
<groupId>com.baomidou</groupId>
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
<version>3.4.0</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.velocity</groupId>
|
<artifactId>velocity-engine-core</artifactId>
|
<version>2.0</version>
|
</dependency>
|
<dependency>
|
<groupId>com.baomidou</groupId>
|
<artifactId>mybatis-plus-generator</artifactId>
|
<version>3.4.0</version>
|
</dependency>
|
<dependency>
|
<groupId>com.github.binarywang</groupId>
|
<artifactId>weixin-java-miniapp</artifactId>
|
<version>4.1.0</version>
|
</dependency>
|
|
<dependency>
|
<groupId>io.springfox</groupId>
|
<artifactId>springfox-swagger2</artifactId>
|
<version>2.9.2</version>
|
</dependency>
|
<dependency>
|
<groupId>io.springfox</groupId>
|
<artifactId>springfox-swagger-ui</artifactId>
|
<version>2.9.2</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-web</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
<!-- 也有人说这个 provided 可能有问题,具体可以自行测试-->
|
<scope>provided</scope>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-web-services</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.session</groupId>
|
<artifactId>spring-session-core</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-devtools</artifactId>
|
<scope>runtime</scope>
|
<optional>true</optional>
|
</dependency>
|
<dependency>
|
<groupId>mysql</groupId>
|
<artifactId>mysql-connector-java</artifactId>
|
<!--<scope>runtime</scope>-->
|
</dependency>
|
<dependency>
|
<groupId>com.github.pagehelper</groupId>
|
<artifactId>pagehelper</artifactId>
|
<version>5.3.1</version>
|
</dependency>
|
<dependency>
|
<groupId>io.jsonwebtoken</groupId>
|
<artifactId>jjwt</artifactId>
|
<version>0.9.1</version>
|
</dependency>
|
<dependency>
|
<groupId>com.tencentcloudapi</groupId>
|
<artifactId>tencentcloud-sdk-java-sms</artifactId>
|
<version>3.1.811</version>
|
</dependency>
|
<dependency>
|
<groupId>org.projectlombok</groupId>
|
<artifactId>lombok</artifactId>
|
<optional>true</optional>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-test</artifactId>
|
<scope>test</scope>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.data</groupId>
|
<artifactId>spring-data-redis</artifactId>
|
<version>2.7.2</version>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-validation</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.httpcomponents</groupId>
|
<artifactId>httpclient</artifactId>
|
<version>4.5.2</version>
|
</dependency>
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>fastjson</artifactId>
|
<version>1.2.75</version>
|
</dependency>
|
<dependency>
|
<groupId>cn.hutool</groupId>
|
<artifactId>hutool-all</artifactId>
|
<version>5.7.1</version>
|
</dependency>
|
</dependencies>
|
<dependencyManagement>
|
<dependencies>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-dependencies</artifactId>
|
<version>${spring-boot.version}</version>
|
<type>pom</type>
|
<scope>import</scope>
|
</dependency>
|
</dependencies>
|
</dependencyManagement>
|
|
<build>
|
<plugins>
|
<plugin>
|
<groupId>org.apache.maven.plugins</groupId>
|
<artifactId>maven-compiler-plugin</artifactId>
|
<version>3.8.1</version>
|
<configuration>
|
<source>1.8</source>
|
<target>1.8</target>
|
<encoding>UTF-8</encoding>
|
</configuration>
|
</plugin>
|
<plugin>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
<version>${spring-boot.version}</version>
|
|
<executions>
|
<execution>
|
<id>repackage</id>
|
<goals>
|
<goal>repackage</goal>
|
</goals>
|
</execution>
|
</executions>
|
</plugin>
|
</plugins>
|
</build>
|
|
</project>
|