Files
jeepay/jeepay-components/pom.xml
韩鹏辉 d969550aa3 提交
2024-05-23 15:23:08 +08:00

41 lines
1.8 KiB
XML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?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> <!-- POM模型版本 -->
<groupId>com.jeequan</groupId> <!-- 组织名, 类似于包名 -->
<artifactId>jeepay-components</artifactId> <!-- 项目名称 -->
<packaging>pom</packaging> <!-- 项目的最终打包类型/发布形式, 可选[jar, war, pom, maven-plugin]等 -->
<name>jeepay-components</name>
<version>Final</version> <!-- pom版本号/项目总版本号, 每个子项目引入的版本号必须一致。 最外层的pom.xml版本号保持不变始终为Final版本。 更新版本请更改isys.version属性 -->
<description>Jeepay计全支付系统</description> <!-- 项目描述 -->
<url>https://www.jeequan.com</url>
<parent>
<groupId>com.jeequan</groupId>
<artifactId>jeepay</artifactId>
<version>Final</version>
</parent>
<!-- 项目属性 -->
<properties>
<projectRootDir>${basedir}/../</projectRootDir>
</properties>
<!-- 声明子项目 -->
<modules>
<module>jeepay-components-core</module><!-- oss服务支撑 -->
<module>jeepay-components-db</module><!-- 基本db -->
<module>jeepay-components-mq</module><!-- MQ消息服务 -->
<module>jeepay-components-oss</module><!-- MQ消息服务 -->
<module>jeepay-components-cache</module><!-- MQ消息服务 -->
<module>jeepay-components-3rd</module><!-- MQ消息服务 -->
<module>jeepay-components-bizcommons</module><!-- MQ消息服务 -->
<!-- <module>jeepay-z-codegen</module>&lt;!&ndash; MQ消息服务 &ndash;&gt;-->
</modules>
</project>