yingp 7 years ago
parent
commit
676d93c4bc
3 changed files with 18 additions and 0 deletions
  1. 1 0
      README.md
  2. 1 0
      applications/pom.xml
  3. 16 0
      applications/ui/pom.xml

+ 1 - 0
README.md

@@ -10,6 +10,7 @@
 │  |  ├─purchase------------------------------采购
 │  |  ├─sale----------------------------------销售
 │  |  ├─storage-------------------------------库存
+│  |  ├─ui------------------------------------UI配置
 │  │ 
 │  ├─base-servers-----------------------------基础服务
 │  |  ├─admin-server--------------------------spring-boot-admin监控中心

+ 1 - 0
applications/pom.xml

@@ -19,6 +19,7 @@
         <module>storage</module>
         <module>money</module>
         <module>document</module>
+        <module>ui</module>
     </modules>
 
 

+ 16 - 0
applications/ui/pom.xml

@@ -0,0 +1,16 @@
+<?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>applications</artifactId>
+        <groupId>com.usoftchina.saas</groupId>
+        <version>1.0.0</version>
+    </parent>
+    <modelVersion>4.0.0</modelVersion>
+
+    <artifactId>ui</artifactId>
+    <description>ui config server</description>
+
+
+</project>