api模块删除spring-maven-plugin配置
diff --git a/consumer-test/pom.xml b/consumer-test/pom.xml
index e33571d..e63062a 100644
--- a/consumer-test/pom.xml
+++ b/consumer-test/pom.xml
@@ -51,4 +51,15 @@
             <artifactId>junit</artifactId>
         </dependency>
     </dependencies>
+
+
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.springframework.boot</groupId>
+                <artifactId>spring-boot-maven-plugin</artifactId>
+            </plugin>
+        </plugins>
+    </build>
 </project>
\ No newline at end of file
diff --git a/pom.xml b/pom.xml
index 298fec5..aabf2f4 100644
--- a/pom.xml
+++ b/pom.xml
@@ -125,10 +125,6 @@
 	<build>
 		<plugins>
 			<plugin>
-				<groupId>org.springframework.boot</groupId>
-				<artifactId>spring-boot-maven-plugin</artifactId>
-			</plugin>
-			<plugin>
 				<groupId>io.fabric8</groupId>
 				<artifactId>docker-maven-plugin</artifactId>
 				<version>0.14.2</version>
diff --git a/provider-test/pom.xml b/provider-test/pom.xml
index 641db13..3b1fbec 100644
--- a/provider-test/pom.xml
+++ b/provider-test/pom.xml
@@ -48,4 +48,13 @@
         </dependency>
     </dependencies>
 
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.springframework.boot</groupId>
+                <artifactId>spring-boot-maven-plugin</artifactId>
+            </plugin>
+        </plugins>
+    </build>
+
 </project>
\ No newline at end of file