62 lines
2.3 KiB
XML
62 lines
2.3 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">
|
||
|
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
<parent>
|
||
|
|
<groupId>com.lxbtech.lxb</groupId>
|
||
|
|
<artifactId>app_interface</artifactId>
|
||
|
|
<version>1.0.0</version>
|
||
|
|
</parent>
|
||
|
|
|
||
|
|
<artifactId>api-common</artifactId>
|
||
|
|
|
||
|
|
<properties>
|
||
|
|
<maven.compiler.source>8</maven.compiler.source>
|
||
|
|
<maven.compiler.target>8</maven.compiler.target>
|
||
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
|
</properties>
|
||
|
|
<dependencies>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.alibaba.cloud</groupId>
|
||
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.alibaba.cloud</groupId>
|
||
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<!-- redis -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.data</groupId>
|
||
|
|
<artifactId>spring-data-redis</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<!-- Spring Web -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework</groupId>
|
||
|
|
<artifactId>spring-web</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<!-- JSON 解析器和生成器 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.alibaba.fastjson2</groupId>
|
||
|
|
<artifactId>fastjson2</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<!-- Java Servlet -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>javax.servlet</groupId>
|
||
|
|
<artifactId>javax.servlet-api</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>io.jsonwebtoken</groupId>
|
||
|
|
<artifactId>jjwt</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<!-- <dependency>-->
|
||
|
|
<!-- <groupId>io.projectreactor</groupId>-->
|
||
|
|
<!-- <artifactId>reactor-core</artifactId>-->
|
||
|
|
<!-- <version>3.5.9</version>-->
|
||
|
|
<!-- </dependency>-->
|
||
|
|
</dependencies>
|
||
|
|
</project>
|