98 lines
3.4 KiB
XML
98 lines
3.4 KiB
XML
<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.tashow.cloud</groupId>
|
||
<artifactId>tashow-module</artifactId>
|
||
<version>${revision}</version>
|
||
</parent>
|
||
|
||
<artifactId>tashow-module-product</artifactId>
|
||
<packaging>jar</packaging>
|
||
|
||
<dependencies>
|
||
<!-- Registry 注册中心相关 -->
|
||
<dependency>
|
||
<groupId>com.alibaba.cloud</groupId>
|
||
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
||
</dependency>
|
||
|
||
<!-- Config 配置中心相关 -->
|
||
<dependency>
|
||
<groupId>com.alibaba.cloud</groupId>
|
||
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
||
</dependency>
|
||
<!-- 防止进入swagger页面报类型转换错误,排除3.0.0中的引用,手动增加1.6.2版本 -->
|
||
<dependency>
|
||
<groupId>io.swagger</groupId>
|
||
<artifactId>swagger-models</artifactId>
|
||
<version>1.6.2</version>
|
||
</dependency>
|
||
<!-- Swagger Core -->
|
||
<dependency>
|
||
<groupId>io.swagger.core.v3</groupId>
|
||
<artifactId>swagger-core</artifactId>
|
||
<version>2.2.20</version>
|
||
</dependency>
|
||
|
||
<!-- Swagger Models -->
|
||
<dependency>
|
||
<groupId>io.swagger.core.v3</groupId>
|
||
<artifactId>swagger-models</artifactId>
|
||
<version>2.2.20</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.github.jsqlparser</groupId>
|
||
<artifactId>jsqlparser</artifactId>
|
||
<version>4.5</version>
|
||
</dependency>
|
||
|
||
<!-- EasyExcel 核心库 -->
|
||
<dependency>
|
||
<groupId>com.alibaba</groupId>
|
||
<artifactId>easyexcel</artifactId>
|
||
<version>4.0.3</version>
|
||
</dependency>
|
||
|
||
|
||
<!-- RPC 远程调用相关 -->
|
||
<dependency>
|
||
<groupId>com.tashow.cloud</groupId>
|
||
<artifactId>tashow-framework-rpc</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.tashow.cloud</groupId>
|
||
<artifactId>tashow-data-mybatis</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.tashow.cloud</groupId>
|
||
<artifactId>tashow-framework-web</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.tashow.cloud</groupId>
|
||
<artifactId>tashow-framework-env</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.tashow.cloud</groupId>
|
||
<artifactId>tashow-framework-websocket</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.tashow.cloud</groupId>
|
||
<artifactId>tashow-data-redis</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.tashow.cloud</groupId>
|
||
<artifactId>tashow-framework-security</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-actuator</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.tashow.cloud</groupId>
|
||
<artifactId>tashow-data-redis</artifactId>
|
||
</dependency>
|
||
</dependencies>
|
||
</project>
|