96 lines
3.2 KiB
XML
96 lines
3.2 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>
|
||
|
|
<groupId>com.jinrui.nxfc</groupId>
|
||
|
|
<artifactId>nxfc-server</artifactId>
|
||
|
|
<version>1.0.0-SNAPSHOT</version>
|
||
|
|
</parent>
|
||
|
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
|
||
|
|
<artifactId>com-core-model</artifactId>
|
||
|
|
<name>com-core-model</name>
|
||
|
|
|
||
|
|
<properties>
|
||
|
|
<spring-webmvc.version>5.1.6.RELEASE</spring-webmvc.version>
|
||
|
|
<commons-pool2.version>2.6.1</commons-pool2.version>
|
||
|
|
<aliyun-sdk-oss.version>2.8.3</aliyun-sdk-oss.version>
|
||
|
|
<elasticsearch.version>7.10.2</elasticsearch.version>
|
||
|
|
<bitwalker.version>1.19</bitwalker.version>
|
||
|
|
</properties>
|
||
|
|
<dependencies>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.jinrui.nxfc</groupId>
|
||
|
|
<artifactId>com-assembly-utils</artifactId>
|
||
|
|
<version>1.0.0-SNAPSHOT</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- spring security 安全认证 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-security</artifactId>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework</groupId>
|
||
|
|
<artifactId>spring-webmvc</artifactId>
|
||
|
|
<version>${spring-webmvc.version}</version>
|
||
|
|
<scope>compile</scope>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!--引入AOP依赖-->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-aop</artifactId>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>mysql</groupId>
|
||
|
|
<artifactId>mysql-connector-java</artifactId>
|
||
|
|
<scope>runtime</scope>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>io.jsonwebtoken</groupId>
|
||
|
|
<artifactId>jjwt</artifactId>
|
||
|
|
<version>0.9.1</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!--webSocket-->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework</groupId>
|
||
|
|
<artifactId>spring-websocket</artifactId>
|
||
|
|
<version>5.2.8.RELEASE</version>
|
||
|
|
</dependency>
|
||
|
|
<!--工具类 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>cn.hutool</groupId>
|
||
|
|
<artifactId>hutool-all</artifactId>
|
||
|
|
<version>5.4.1</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.alibaba.fastjson2</groupId>
|
||
|
|
<artifactId>fastjson2</artifactId>
|
||
|
|
<version>2.0.27</version>
|
||
|
|
<scope>compile</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.baomidou</groupId>
|
||
|
|
<artifactId>dynamic-datasource-spring-boot-starter</artifactId>
|
||
|
|
<version>3.6.1</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>eu.bitwalker</groupId>
|
||
|
|
<artifactId>UserAgentUtils</artifactId>
|
||
|
|
<version>${bitwalker.version}</version>
|
||
|
|
</dependency>
|
||
|
|
</dependencies>
|
||
|
|
</project>
|