commit f3ec4db8c4fff0366a63044a6f8c0b8764e37fe5 Author: Administrator Date: Wed Mar 22 15:22:44 2023 +0800 构建聚合工程&6个子工程 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8450319 --- /dev/null +++ b/.gitignore @@ -0,0 +1,21 @@ +# Created by .ignore support plugin (hsz.mobi) +### Example user template template +### Example user template + +# IntelliJ project files +.idea +*.iml +out +gen +### Maven template +target/ +pom.xml.tag +pom.xml.releaseBackup +pom.xml.versionsBackup +pom.xml.next +release.properties +dependency-reduced-pom.xml +buildNumber.properties +.mvn/timing.properties +.mvn/wrapper/maven-wrapper.jar + diff --git a/01-placeorder/pom.xml b/01-placeorder/pom.xml new file mode 100644 index 0000000..a486e1a --- /dev/null +++ b/01-placeorder/pom.xml @@ -0,0 +1,16 @@ + + + + rabbitmq + com.mashibing + 1.0-SNAPSHOT + + 4.0.0 + + 01-placeorder + 当前是下单服务 + + + \ No newline at end of file diff --git a/02-itemstock/pom.xml b/02-itemstock/pom.xml new file mode 100644 index 0000000..7735daa --- /dev/null +++ b/02-itemstock/pom.xml @@ -0,0 +1,16 @@ + + + + rabbitmq + com.mashibing + 1.0-SNAPSHOT + + 4.0.0 + + 02-itemstock + 商品的库存服务,专门对库存做操作 + + + \ No newline at end of file diff --git a/03-ordermanage/pom.xml b/03-ordermanage/pom.xml new file mode 100644 index 0000000..f42b206 --- /dev/null +++ b/03-ordermanage/pom.xml @@ -0,0 +1,16 @@ + + + + rabbitmq + com.mashibing + 1.0-SNAPSHOT + + 4.0.0 + + 03-ordermanage + 订单服务,构建订单,对订单做处理~~ + + + \ No newline at end of file diff --git a/04-coupon/pom.xml b/04-coupon/pom.xml new file mode 100644 index 0000000..a7c2f5c --- /dev/null +++ b/04-coupon/pom.xml @@ -0,0 +1,15 @@ + + + + rabbitmq + com.mashibing + 1.0-SNAPSHOT + + 4.0.0 + + 04-coupon + 优惠券服务………… + + \ No newline at end of file diff --git a/05-userpoints/pom.xml b/05-userpoints/pom.xml new file mode 100644 index 0000000..c3874e2 --- /dev/null +++ b/05-userpoints/pom.xml @@ -0,0 +1,16 @@ + + + + rabbitmq + com.mashibing + 1.0-SNAPSHOT + + 4.0.0 + + 05-userpoints + 管理用户积分 + + + \ No newline at end of file diff --git a/06-business/pom.xml b/06-business/pom.xml new file mode 100644 index 0000000..cb1781f --- /dev/null +++ b/06-business/pom.xml @@ -0,0 +1,15 @@ + + + + rabbitmq + com.mashibing + 1.0-SNAPSHOT + + 4.0.0 + + 06-business + 商家服务 + + \ No newline at end of file diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..3a1f9cc --- /dev/null +++ b/pom.xml @@ -0,0 +1,51 @@ + + + 4.0.0 + + 01-placeorder + 02-itemstock + 03-ordermanage + 04-coupon + 05-userpoints + 06-business + + + + org.springframework.boot + spring-boot-starter-parent + 2.3.12.RELEASE + + + + com.mashibing + rabbitmq + 1.0-SNAPSHOT + pom + + + Hoxton.SR12 + 2.2.7.RELEASE + + + + + org.springframework.cloud + spring-cloud-dependencies + ${spring.cloud-version} + pom + import + + + com.alibaba.cloud + spring-cloud-alibaba-dependencies + ${spring.cloud.alibaba-version} + pom + import + + + + + + \ No newline at end of file