116 lines
4.1 KiB
XML
116 lines
4.1 KiB
XML
|
|
<?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">
|
||
|
|
<parent>
|
||
|
|
<artifactId>parent</artifactId>
|
||
|
|
<groupId>mingchen</groupId>
|
||
|
|
<version>1.1-SNAPSHOT</version>
|
||
|
|
<relativePath>../parent</relativePath>
|
||
|
|
</parent>
|
||
|
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
|
||
|
|
<artifactId>common</artifactId>
|
||
|
|
|
||
|
|
<properties>
|
||
|
|
<maven.compiler.source>11</maven.compiler.source>
|
||
|
|
<maven.compiler.target>11</maven.compiler.target>
|
||
|
|
</properties>
|
||
|
|
|
||
|
|
<dependencies>
|
||
|
|
|
||
|
|
<!-- https://mvnrepository.com/artifact/org.mybatis.spring.boot/mybatis-spring-boot-starter -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.mybatis.spring.boot</groupId>
|
||
|
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
||
|
|
<version>2.2.2</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- https://mvnrepository.com/artifact/com.baomidou/mybatis-plus-core -->
|
||
|
|
<!-- <dependency>-->
|
||
|
|
<!-- <groupId>com.baomidou</groupId>-->
|
||
|
|
<!-- <artifactId>mybatis-plus-core</artifactId>-->
|
||
|
|
<!-- <version>3.5.5</version>-->
|
||
|
|
<!-- </dependency>-->
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>cn.hutool</groupId>
|
||
|
|
<artifactId>hutool-all</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>io.swagger</groupId>
|
||
|
|
<artifactId>swagger-annotations</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework</groupId>
|
||
|
|
<artifactId>spring-core</artifactId>
|
||
|
|
<scope>provided</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework</groupId>
|
||
|
|
<artifactId>spring-expression</artifactId>
|
||
|
|
<scope>provided</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.aspectj</groupId>
|
||
|
|
<artifactId>aspectjweaver</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
||
|
|
<artifactId>jackson-datatype-jsr310</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>io.jsonwebtoken</groupId>
|
||
|
|
<artifactId>jjwt</artifactId>
|
||
|
|
<version>0.9.1</version>
|
||
|
|
<scope>compile</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.security</groupId>
|
||
|
|
<artifactId>spring-security-core</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>nl.basjes.parse.useragent</groupId>
|
||
|
|
<artifactId>yauaa</artifactId>
|
||
|
|
<version>5.20</version>
|
||
|
|
<scope>compile</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>jakarta.servlet</groupId>
|
||
|
|
<artifactId>jakarta.servlet-api</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.lionsoul</groupId>
|
||
|
|
<artifactId>ip2region</artifactId>
|
||
|
|
<version>1.7.2</version>
|
||
|
|
<scope>compile</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework</groupId>
|
||
|
|
<artifactId>spring-web</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.atlassian.commonmark</groupId>
|
||
|
|
<artifactId>commonmark</artifactId>
|
||
|
|
<version>0.15.2</version>
|
||
|
|
<scope>compile</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework</groupId>
|
||
|
|
<artifactId>spring-context-support</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.sun.mail</groupId>
|
||
|
|
<artifactId>jakarta.mail</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.thymeleaf</groupId>
|
||
|
|
<artifactId>thymeleaf</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.data</groupId>
|
||
|
|
<artifactId>spring-data-redis</artifactId>
|
||
|
|
</dependency>
|
||
|
|
</dependencies>
|
||
|
|
|
||
|
|
</project>
|