Browse Source

feat:创建seata-order-micro-servic订单微服务模块

yang yi 1 year ago
parent
commit
0493f433e4
2 changed files with 20 additions and 0 deletions
  1. 1 0
      pom.xml
  2. 19 0
      seata_order_micro_servic/pom.xml

+ 1 - 0
pom.xml

@@ -13,6 +13,7 @@
         <module>common</module>
         <module>seata_storage_micro_service</module>
         <module>seata_ccount_micro_service</module>
+        <module>seata_order_micro_servic</module>
     </modules>
     <packaging>pom</packaging>
 

+ 19 - 0
seata_order_micro_servic/pom.xml

@@ -0,0 +1,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">
+    <parent>
+        <artifactId>distributedSystemLearn</artifactId>
+        <groupId>anyi.space</groupId>
+        <version>1.0-SNAPSHOT</version>
+    </parent>
+    <modelVersion>4.0.0</modelVersion>
+
+    <artifactId>seata_order_micro_servic</artifactId>
+
+    <properties>
+        <maven.compiler.source>17</maven.compiler.source>
+        <maven.compiler.target>17</maven.compiler.target>
+    </properties>
+
+</project>