- 增加 demo 项目,用于作为脚手架的示例。目前暂未完成,提交保存下。

This commit is contained in:
YunaiV
2019-09-19 20:16:26 +08:00
parent 4055ee4cf0
commit 73af7c3932
26 changed files with 582 additions and 0 deletions

24
demo/pom.xml Normal file
View File

@@ -0,0 +1,24 @@
<?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">
<parent>
<artifactId>onemall</artifactId>
<groupId>cn.iocoder.mall</groupId>
<version>1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>demo</artifactId>
<packaging>pom</packaging>
<modules>
<module>demo-application</module>
<module>demo-rpc-service-api</module>
<module>demo-rpc-service</module>
<module>demo-business-api</module>
<module>demo-business</module>
<module>demo-job</module>
</modules>
</project>