From f3ec4db8c4fff0366a63044a6f8c0b8764e37fe5 Mon Sep 17 00:00:00 2001 From: Administrator Date: Wed, 22 Mar 2023 15:22:44 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9E=84=E5=BB=BA=E8=81=9A=E5=90=88=E5=B7=A5?= =?UTF-8?q?=E7=A8=8B&6=E4=B8=AA=E5=AD=90=E5=B7=A5=E7=A8=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 21 +++++++++++++++++ 01-placeorder/pom.xml | 16 +++++++++++++ 02-itemstock/pom.xml | 16 +++++++++++++ 03-ordermanage/pom.xml | 16 +++++++++++++ 04-coupon/pom.xml | 15 +++++++++++++ 05-userpoints/pom.xml | 16 +++++++++++++ 06-business/pom.xml | 15 +++++++++++++ pom.xml | 51 ++++++++++++++++++++++++++++++++++++++++++ 8 files changed, 166 insertions(+) create mode 100644 .gitignore create mode 100644 01-placeorder/pom.xml create mode 100644 02-itemstock/pom.xml create mode 100644 03-ordermanage/pom.xml create mode 100644 04-coupon/pom.xml create mode 100644 05-userpoints/pom.xml create mode 100644 06-business/pom.xml create mode 100644 pom.xml 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