diff --git a/mall-coupon/pom.xml b/mall-coupon/pom.xml
new file mode 100644
index 0000000..44e15de
--- /dev/null
+++ b/mall-coupon/pom.xml
@@ -0,0 +1,57 @@
+
+
+ 4.0.0
+
+ org.springframework.boot
+ spring-boot-starter-parent
+ 2.7.3
+
+
+ com.sawyer
+ mall-coupon
+ 0.0.1-SNAPSHOT
+ mall-coupon
+ mall-coupon
+
+ 1.8
+ 2021.0.4
+
+
+
+ org.springframework.boot
+ spring-boot-starter-web
+
+
+ org.springframework.cloud
+ spring-cloud-starter-openfeign
+
+
+
+ org.springframework.boot
+ spring-boot-starter-test
+ test
+
+
+
+
+
+ org.springframework.cloud
+ spring-cloud-dependencies
+ ${spring-cloud.version}
+ pom
+ import
+
+
+
+
+
+
+
+ org.springframework.boot
+ spring-boot-maven-plugin
+
+
+
+
+
diff --git a/mall-coupon/src/main/java/com/sawyer/mallcoupon/MallCouponApplication.java b/mall-coupon/src/main/java/com/sawyer/mallcoupon/MallCouponApplication.java
new file mode 100644
index 0000000..0c80ebe
--- /dev/null
+++ b/mall-coupon/src/main/java/com/sawyer/mallcoupon/MallCouponApplication.java
@@ -0,0 +1,13 @@
+package com.sawyer.mallcoupon;
+
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+
+@SpringBootApplication
+public class MallCouponApplication {
+
+ public static void main(String[] args) {
+ SpringApplication.run(MallCouponApplication.class, args);
+ }
+
+}
diff --git a/mall-coupon/src/main/resources/application.properties b/mall-coupon/src/main/resources/application.properties
new file mode 100644
index 0000000..8b13789
--- /dev/null
+++ b/mall-coupon/src/main/resources/application.properties
@@ -0,0 +1 @@
+
diff --git a/mall-coupon/src/test/java/com/sawyer/mallcoupon/MallCouponApplicationTests.java b/mall-coupon/src/test/java/com/sawyer/mallcoupon/MallCouponApplicationTests.java
new file mode 100644
index 0000000..ab7f60c
--- /dev/null
+++ b/mall-coupon/src/test/java/com/sawyer/mallcoupon/MallCouponApplicationTests.java
@@ -0,0 +1,13 @@
+package com.sawyer.mallcoupon;
+
+import org.junit.jupiter.api.Test;
+import org.springframework.boot.test.context.SpringBootTest;
+
+@SpringBootTest
+class MallCouponApplicationTests {
+
+ @Test
+ void contextLoads() {
+ }
+
+}
diff --git a/mall-member/pom.xml b/mall-member/pom.xml
new file mode 100644
index 0000000..afaa705
--- /dev/null
+++ b/mall-member/pom.xml
@@ -0,0 +1,57 @@
+
+
+ 4.0.0
+
+ org.springframework.boot
+ spring-boot-starter-parent
+ 2.7.3
+
+
+ com.sawyer
+ mall-member
+ 0.0.1-SNAPSHOT
+ mall-member
+ mall-member
+
+ 1.8
+ 2021.0.4
+
+
+
+ org.springframework.boot
+ spring-boot-starter-web
+
+
+ org.springframework.cloud
+ spring-cloud-starter-openfeign
+
+
+
+ org.springframework.boot
+ spring-boot-starter-test
+ test
+
+
+
+
+
+ org.springframework.cloud
+ spring-cloud-dependencies
+ ${spring-cloud.version}
+ pom
+ import
+
+
+
+
+
+
+
+ org.springframework.boot
+ spring-boot-maven-plugin
+
+
+
+
+
diff --git a/mall-member/src/main/java/com/sawyer/mallmember/MallMemberApplication.java b/mall-member/src/main/java/com/sawyer/mallmember/MallMemberApplication.java
new file mode 100644
index 0000000..2d1d887
--- /dev/null
+++ b/mall-member/src/main/java/com/sawyer/mallmember/MallMemberApplication.java
@@ -0,0 +1,13 @@
+package com.sawyer.mallmember;
+
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+
+@SpringBootApplication
+public class MallMemberApplication {
+
+ public static void main(String[] args) {
+ SpringApplication.run(MallMemberApplication.class, args);
+ }
+
+}
diff --git a/mall-member/src/main/resources/application.properties b/mall-member/src/main/resources/application.properties
new file mode 100644
index 0000000..8b13789
--- /dev/null
+++ b/mall-member/src/main/resources/application.properties
@@ -0,0 +1 @@
+
diff --git a/mall-member/src/test/java/com/sawyer/mallmember/MallMemberApplicationTests.java b/mall-member/src/test/java/com/sawyer/mallmember/MallMemberApplicationTests.java
new file mode 100644
index 0000000..c273a79
--- /dev/null
+++ b/mall-member/src/test/java/com/sawyer/mallmember/MallMemberApplicationTests.java
@@ -0,0 +1,13 @@
+package com.sawyer.mallmember;
+
+import org.junit.jupiter.api.Test;
+import org.springframework.boot.test.context.SpringBootTest;
+
+@SpringBootTest
+class MallMemberApplicationTests {
+
+ @Test
+ void contextLoads() {
+ }
+
+}
diff --git a/mall-order/pom.xml b/mall-order/pom.xml
new file mode 100644
index 0000000..6197482
--- /dev/null
+++ b/mall-order/pom.xml
@@ -0,0 +1,57 @@
+
+
+ 4.0.0
+
+ org.springframework.boot
+ spring-boot-starter-parent
+ 2.7.3
+
+
+ com.sewyer
+ mall-order
+ 0.0.1-SNAPSHOT
+ mall-order
+ mall-order
+
+ 1.8
+ 2021.0.4
+
+
+
+ org.springframework.boot
+ spring-boot-starter-web
+
+
+ org.springframework.cloud
+ spring-cloud-starter-openfeign
+
+
+
+ org.springframework.boot
+ spring-boot-starter-test
+ test
+
+
+
+
+
+ org.springframework.cloud
+ spring-cloud-dependencies
+ ${spring-cloud.version}
+ pom
+ import
+
+
+
+
+
+
+
+ org.springframework.boot
+ spring-boot-maven-plugin
+
+
+
+
+
diff --git a/mall-order/src/main/java/com/sewyer/mallorder/MallOrderApplication.java b/mall-order/src/main/java/com/sewyer/mallorder/MallOrderApplication.java
new file mode 100644
index 0000000..6b298b9
--- /dev/null
+++ b/mall-order/src/main/java/com/sewyer/mallorder/MallOrderApplication.java
@@ -0,0 +1,13 @@
+package com.sewyer.mallorder;
+
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+
+@SpringBootApplication
+public class MallOrderApplication {
+
+ public static void main(String[] args) {
+ SpringApplication.run(MallOrderApplication.class, args);
+ }
+
+}
diff --git a/mall-order/src/main/resources/application.properties b/mall-order/src/main/resources/application.properties
new file mode 100644
index 0000000..8b13789
--- /dev/null
+++ b/mall-order/src/main/resources/application.properties
@@ -0,0 +1 @@
+
diff --git a/mall-order/src/test/java/com/sewyer/mallorder/MallOrderApplicationTests.java b/mall-order/src/test/java/com/sewyer/mallorder/MallOrderApplicationTests.java
new file mode 100644
index 0000000..035d249
--- /dev/null
+++ b/mall-order/src/test/java/com/sewyer/mallorder/MallOrderApplicationTests.java
@@ -0,0 +1,13 @@
+package com.sewyer.mallorder;
+
+import org.junit.jupiter.api.Test;
+import org.springframework.boot.test.context.SpringBootTest;
+
+@SpringBootTest
+class MallOrderApplicationTests {
+
+ @Test
+ void contextLoads() {
+ }
+
+}
diff --git a/mall-product/pom.xml b/mall-product/pom.xml
new file mode 100644
index 0000000..b2c4fdc
--- /dev/null
+++ b/mall-product/pom.xml
@@ -0,0 +1,57 @@
+
+
+ 4.0.0
+
+ org.springframework.boot
+ spring-boot-starter-parent
+ 2.7.3
+
+
+ com.sweyer
+ mall-product
+ 0.0.1-SNAPSHOT
+ mall-product
+ mall-product
+
+ 1.8
+ 2021.0.4
+
+
+
+ org.springframework.boot
+ spring-boot-starter-web
+
+
+ org.springframework.cloud
+ spring-cloud-starter-openfeign
+
+
+
+ org.springframework.boot
+ spring-boot-starter-test
+ test
+
+
+
+
+
+ org.springframework.cloud
+ spring-cloud-dependencies
+ ${spring-cloud.version}
+ pom
+ import
+
+
+
+
+
+
+
+ org.springframework.boot
+ spring-boot-maven-plugin
+
+
+
+
+
diff --git a/mall-product/src/main/java/com/sweyer/mallproduct/MallProductApplication.java b/mall-product/src/main/java/com/sweyer/mallproduct/MallProductApplication.java
new file mode 100644
index 0000000..73b2165
--- /dev/null
+++ b/mall-product/src/main/java/com/sweyer/mallproduct/MallProductApplication.java
@@ -0,0 +1,13 @@
+package com.sweyer.mallproduct;
+
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+
+@SpringBootApplication
+public class MallProductApplication {
+
+ public static void main(String[] args) {
+ SpringApplication.run(MallProductApplication.class, args);
+ }
+
+}
diff --git a/mall-product/src/main/resources/application.properties b/mall-product/src/main/resources/application.properties
new file mode 100644
index 0000000..8b13789
--- /dev/null
+++ b/mall-product/src/main/resources/application.properties
@@ -0,0 +1 @@
+
diff --git a/mall-product/src/test/java/com/sweyer/mallproduct/MallProductApplicationTests.java b/mall-product/src/test/java/com/sweyer/mallproduct/MallProductApplicationTests.java
new file mode 100644
index 0000000..6d34592
--- /dev/null
+++ b/mall-product/src/test/java/com/sweyer/mallproduct/MallProductApplicationTests.java
@@ -0,0 +1,13 @@
+package com.sweyer.mallproduct;
+
+import org.junit.jupiter.api.Test;
+import org.springframework.boot.test.context.SpringBootTest;
+
+@SpringBootTest
+class MallProductApplicationTests {
+
+ @Test
+ void contextLoads() {
+ }
+
+}
diff --git a/mall-ware/pom.xml b/mall-ware/pom.xml
new file mode 100644
index 0000000..a747839
--- /dev/null
+++ b/mall-ware/pom.xml
@@ -0,0 +1,57 @@
+
+
+ 4.0.0
+
+ org.springframework.boot
+ spring-boot-starter-parent
+ 2.7.3
+
+
+ com.sawyer
+ mall-ware
+ 0.0.1-SNAPSHOT
+ mall-ware
+ mall-ware
+
+ 1.8
+ 2021.0.4
+
+
+
+ org.springframework.boot
+ spring-boot-starter-web
+
+
+ org.springframework.cloud
+ spring-cloud-starter-openfeign
+
+
+
+ org.springframework.boot
+ spring-boot-starter-test
+ test
+
+
+
+
+
+ org.springframework.cloud
+ spring-cloud-dependencies
+ ${spring-cloud.version}
+ pom
+ import
+
+
+
+
+
+
+
+ org.springframework.boot
+ spring-boot-maven-plugin
+
+
+
+
+
diff --git a/mall-ware/src/main/java/com/sawyer/mallware/MallWareApplication.java b/mall-ware/src/main/java/com/sawyer/mallware/MallWareApplication.java
new file mode 100644
index 0000000..24b96ad
--- /dev/null
+++ b/mall-ware/src/main/java/com/sawyer/mallware/MallWareApplication.java
@@ -0,0 +1,13 @@
+package com.sawyer.mallware;
+
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+
+@SpringBootApplication
+public class MallWareApplication {
+
+ public static void main(String[] args) {
+ SpringApplication.run(MallWareApplication.class, args);
+ }
+
+}
diff --git a/mall-ware/src/main/resources/application.properties b/mall-ware/src/main/resources/application.properties
new file mode 100644
index 0000000..8b13789
--- /dev/null
+++ b/mall-ware/src/main/resources/application.properties
@@ -0,0 +1 @@
+
diff --git a/mall-ware/src/test/java/com/sawyer/mallware/MallWareApplicationTests.java b/mall-ware/src/test/java/com/sawyer/mallware/MallWareApplicationTests.java
new file mode 100644
index 0000000..45abf71
--- /dev/null
+++ b/mall-ware/src/test/java/com/sawyer/mallware/MallWareApplicationTests.java
@@ -0,0 +1,13 @@
+package com.sawyer.mallware;
+
+import org.junit.jupiter.api.Test;
+import org.springframework.boot.test.context.SpringBootTest;
+
+@SpringBootTest
+class MallWareApplicationTests {
+
+ @Test
+ void contextLoads() {
+ }
+
+}
diff --git a/pom.xml b/pom.xml
new file mode 100644
index 0000000..3bd2d57
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,18 @@
+
+
+ 4.0.0
+ com.sawyer
+ guli_mall
+ 0.0.1-SNAPSHOT
+ guli_mall
+ guli_mall
+ pom
+
+ mall-product
+ mall-coupon
+ mall-member
+ mall-order
+ mall-ware
+
+