45 lines
1.5 KiB
XML
45 lines
1.5 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-admin</artifactId>
|
||
<version>${revision}</version>
|
||
</parent>
|
||
|
||
<!-- 项目名称 -->
|
||
<artifactId>xiaomayi-admin-api</artifactId>
|
||
<!-- 项目打包类型:JAR包 -->
|
||
<packaging>jar</packaging>
|
||
<!-- 项目名称 -->
|
||
<name>xiaomayi-admin-biz</name>
|
||
<!-- 项目描述 -->
|
||
<description>小蚂蚁云后台服务API模块</description>
|
||
|
||
<!-- 依赖声明 -->
|
||
<dependencies>
|
||
<!-- 核心类库 -->
|
||
<dependency>
|
||
<groupId>com.xiaomayi</groupId>
|
||
<artifactId>xiaomayi-core</artifactId>
|
||
</dependency>
|
||
<!-- Mybatis 持久层框架 -->
|
||
<dependency>
|
||
<groupId>com.xiaomayi</groupId>
|
||
<artifactId>xiaomayi-mybatis</artifactId>
|
||
</dependency>
|
||
<!-- XSS 防攻击 -->
|
||
<dependency>
|
||
<groupId>com.xiaomayi</groupId>
|
||
<artifactId>xiaomayi-xss</artifactId>
|
||
</dependency>
|
||
<!-- Feign 远程服务调用 -->
|
||
<dependency>
|
||
<groupId>com.xiaomayi</groupId>
|
||
<artifactId>xiaomayi-feign</artifactId>
|
||
</dependency>
|
||
</dependencies>
|
||
|
||
</project> |