huodongdong 7 years ago
parent
commit
05dfbac277
4 changed files with 20 additions and 7 deletions
  1. 2 2
      config-service/pom.xml
  2. 2 2
      eureka-service/pom.xml
  3. 13 0
      pom.xml
  4. 3 3
      product-service/pom.xml

+ 2 - 2
config-service/pom.xml

@@ -4,11 +4,11 @@
 	<modelVersion>4.0.0</modelVersion>
 
 	<groupId>cn.rankin</groupId>
-	<artifactId>config-server</artifactId>
+	<artifactId>config-service</artifactId>
 	<version>0.0.1-SNAPSHOT</version>
 	<packaging>jar</packaging>
 
-	<name>config-server</name>
+	<name>config-service</name>
 	<description>Config Server For Spring Cloud</description>
 
 	<parent>

+ 2 - 2
eureka-service/pom.xml

@@ -4,11 +4,11 @@
 	<modelVersion>4.0.0</modelVersion>
 
 	<groupId>cn.rankin</groupId>
-	<artifactId>eureka-server</artifactId>
+	<artifactId>eureka-service</artifactId>
 	<version>0.0.1-SNAPSHOT</version>
 	<packaging>jar</packaging>
 
-	<name>eureka-server</name>
+	<name>eureka-service</name>
 	<description>Discovery Service For Spring Cloud</description>
 
 	<parent>

+ 13 - 0
pom.xml

@@ -24,6 +24,19 @@
 		<java.version>1.8</java.version>
 	</properties>
 
+    <modules>
+        <module>eureka-service</module>
+        <module>config-service</module>
+        <module>product-service</module>
+        <module>user-service</module>
+        <module>resource-service</module>
+        <module>trade-service</module>
+        <module>cms-web</module>
+        <module>api-web</module>
+        <module>api-gateway</module>
+        <module>cms-gateway</module>
+    </modules>
+
 	<dependencies>
 		<dependency>
 			<groupId>org.springframework.boot</groupId>

+ 3 - 3
product-service/pom.xml

@@ -4,12 +4,12 @@
 	<modelVersion>4.0.0</modelVersion>
 
 	<groupId>cn.rankin</groupId>
-	<artifactId>user-service</artifactId>
+	<artifactId>product-service</artifactId>
 	<version>0.0.1-SNAPSHOT</version>
 	<packaging>jar</packaging>
 
-	<name>user-service</name>
-	<description>User Service For Spring Cloud</description>
+	<name>product-service</name>
+	<description>Product Service For Spring Cloud</description>
 
 	<parent>
 		<groupId>org.springframework.boot</groupId>