加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pom.xml 3.05 KB
一键复制 编辑 原始数据 按行查看 历史
mrt 提交于 2024-09-15 17:19 . 初始化代码
<?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>
<artifactId>jzo2o-parent</artifactId>
<groupId>com.jzo2o</groupId>
<version>1.0-SNAPSHOT</version>
</parent>
<groupId>com.jzo2o</groupId>
<artifactId>mall</artifactId>
<packaging>pom</packaging>
<properties>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<mall.version>1.0-SNAPSHOT</mall.version>
<aliyun-version>4.6.0</aliyun-version>
<aliyun-sdk-oss-version>3.14.0</aliyun-sdk-oss-version>
<aliyun-sdk-dysms-version>2.0.9</aliyun-sdk-dysms-version>
<huaweicloud-obs.version>3.20.6.2</huaweicloud-obs.version>
<tencentcloud.version>3.1.693</tencentcloud.version>
<cos.version>5.6.97</cos.version>
<poi-version>5.1.0</poi-version>
<poi-ooxml-version>5.1.0</poi-ooxml-version>
</properties>
<modules>
<module>mall-common</module>
<module>mall-system</module>
<module>mall-product</module>
<module>mall-admin-web</module>
<module>mall-security</module>
<module>mall-member</module>
<module>mall-store-web</module>
<module>mall-common-web</module>
<module>mall-consumer-web</module>
<module>mall-order</module>
</modules>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.jzo2o</groupId>
<artifactId>mall-common</artifactId>
<version>${mall.version}</version>
</dependency>
<dependency>
<groupId>com.jzo2o</groupId>
<artifactId>mall-security</artifactId>
<version>${mall.version}</version>
</dependency>
<dependency>
<groupId>com.jzo2o</groupId>
<artifactId>mall-system</artifactId>
<version>${mall.version}</version>
</dependency>
<dependency>
<groupId>com.jzo2o</groupId>
<artifactId>mall-product</artifactId>
<version>${mall.version}</version>
</dependency>
<dependency>
<groupId>com.jzo2o</groupId>
<artifactId>mall-admin</artifactId>
<version>${mall.version}</version>
</dependency>
<dependency>
<groupId>com.jzo2o</groupId>
<artifactId>mall-member</artifactId>
<version>${mall.version}</version>
</dependency>
<dependency>
<groupId>com.jzo2o</groupId>
<artifactId>mall-order</artifactId>
<version>${mall.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化