117 lines
3.8 KiB
XML
117 lines
3.8 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.tashow.cloud</groupId>
|
|
<artifactId>tashow-module</artifactId>
|
|
<version>${revision}</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>tashow-module-trade</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>${project.artifactId}</name>
|
|
<description>
|
|
trade 模块,主要实现交易相关功能
|
|
例如:订单、退款、购物车等功能。
|
|
</description>
|
|
|
|
<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>
|
|
|
|
<!--skywalking日志-->
|
|
<dependency>
|
|
<groupId>com.tashow.cloud</groupId>
|
|
<artifactId>tashow-framework-monitor</artifactId>
|
|
</dependency>
|
|
<!-- Spring Cloud 基础 -->
|
|
<dependency>
|
|
<groupId>com.tashow.cloud</groupId>
|
|
<artifactId>tashow-framework-env</artifactId>
|
|
</dependency>
|
|
|
|
<!-- 依赖服务 -->
|
|
<dependency>
|
|
<groupId>com.tashow.cloud</groupId>
|
|
<artifactId>tashow-trade-api</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.tashow.cloud</groupId>
|
|
<artifactId>tashow-product-api</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Web 相关 -->
|
|
<dependency>
|
|
<groupId>com.tashow.cloud</groupId>
|
|
<artifactId>tashow-framework-web</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.tashow.cloud</groupId>
|
|
<artifactId>tashow-framework-security</artifactId>
|
|
</dependency>
|
|
|
|
<!-- DB 相关 -->
|
|
<dependency>
|
|
<groupId>com.tashow.cloud</groupId>
|
|
<artifactId>tashow-data-mybatis</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.tashow.cloud</groupId>
|
|
<artifactId>tashow-data-redis</artifactId>
|
|
</dependency>
|
|
|
|
<!-- RPC 远程调用相关 -->
|
|
<dependency>
|
|
<groupId>com.tashow.cloud</groupId>
|
|
<artifactId>tashow-framework-rpc</artifactId>
|
|
</dependency>
|
|
<!-- 工具类相关 -->
|
|
<dependency>
|
|
<groupId>com.tashow.cloud</groupId>
|
|
<artifactId>tashow-data-excel</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.tashow.cloud</groupId>
|
|
<artifactId>tashow-pay-api</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.tashow.cloud</groupId>
|
|
<artifactId>tashow-user-api</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<!-- 设置构建的 jar 包名 -->
|
|
<finalName>${project.artifactId}</finalName>
|
|
<plugins>
|
|
<!-- 打包 -->
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<version>${spring.boot.version}</version>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>repackage</goal> <!-- 将引入的 jar 打入其中 -->
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|