83 lines
2.8 KiB
XML
83 lines
2.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">
|
||
<modelVersion>4.0.0</modelVersion>
|
||
<parent>
|
||
<groupId>com.xiaomayi</groupId>
|
||
<artifactId>xiaomayi-user</artifactId>
|
||
<version>${revision}</version>
|
||
</parent>
|
||
|
||
<artifactId>xiaomayi-user-biz</artifactId>
|
||
<!-- 项目打包类型:JAR包 -->
|
||
<packaging>jar</packaging>
|
||
<!-- 项目名称 -->
|
||
<name>xiaomayi-user-biz</name>
|
||
<!-- 项目描述 -->
|
||
<description>小蚂蚁云用户服务BIZ模块</description>
|
||
|
||
<!-- 依赖声明 -->
|
||
<dependencies>
|
||
<!-- 用户服务API模块 -->
|
||
<dependency>
|
||
<groupId>com.xiaomayi</groupId>
|
||
<artifactId>xiaomayi-user-api</artifactId>
|
||
</dependency>
|
||
<!-- 系统服务API模块 -->
|
||
<dependency>
|
||
<groupId>com.xiaomayi</groupId>
|
||
<artifactId>xiaomayi-system-api</artifactId>
|
||
</dependency>
|
||
<!-- 核心类库 -->
|
||
<dependency>
|
||
<groupId>com.xiaomayi</groupId>
|
||
<artifactId>xiaomayi-core</artifactId>
|
||
</dependency>
|
||
<!-- Mybatis 持久层框架 -->
|
||
<dependency>
|
||
<groupId>com.xiaomayi</groupId>
|
||
<artifactId>xiaomayi-mybatis</artifactId>
|
||
</dependency>
|
||
<!-- OSS云存储依赖模块 -->
|
||
<dependency>
|
||
<groupId>com.xiaomayi</groupId>
|
||
<artifactId>xiaomayi-oss</artifactId>
|
||
</dependency>
|
||
<!-- Nacos 注册配置中心 -->
|
||
<dependency>
|
||
<groupId>com.xiaomayi</groupId>
|
||
<artifactId>xiaomayi-nacos</artifactId>
|
||
</dependency>
|
||
<!-- Seata 分布式事务 -->
|
||
<dependency>
|
||
<groupId>com.xiaomayi</groupId>
|
||
<artifactId>xiaomayi-seata</artifactId>
|
||
</dependency>
|
||
<!-- Spring Boot Admin 监控客户端 -->
|
||
<dependency>
|
||
<groupId>de.codecentric</groupId>
|
||
<artifactId>spring-boot-admin-starter-client</artifactId>
|
||
</dependency>
|
||
</dependencies>
|
||
|
||
<!-- 构建打包配置 -->
|
||
<build>
|
||
<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>
|
||
</goals>
|
||
</execution>
|
||
</executions>
|
||
</plugin>
|
||
</plugins>
|
||
</build>
|
||
|
||
</project> |