27 lines
896 B
XML
27 lines
896 B
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-modules</artifactId>
|
||
<version>${revision}</version>
|
||
</parent>
|
||
|
||
<!-- 项目名称 -->
|
||
<artifactId>xiaomayi-web</artifactId>
|
||
<!-- 项目打包类型:JAR包 -->
|
||
<packaging>pom</packaging>
|
||
<!-- 项目名称 -->
|
||
<name>xiaomayi-web</name>
|
||
<!-- 项目描述 -->
|
||
<description>小蚂蚁云WEB网站应用服务</description>
|
||
|
||
<!-- 模块管理 -->
|
||
<modules>
|
||
<module>xiaomayi-web-api</module>
|
||
<module>xiaomayi-web-biz</module>
|
||
</modules>
|
||
|
||
</project> |