From d06fbb7626ca5c9e4e7a91ac06a6f2ae186c0f27 Mon Sep 17 00:00:00 2001
From: aa51513 <aa51513@163.com>
Date: 星期六, 15 五月 2021 15:52:04 +0800
Subject: [PATCH] 解决warnings,统一处理finally中return的问题

---
 service-user/pom.xml |   72 ++++++++++++++++++-----------------
 1 files changed, 37 insertions(+), 35 deletions(-)

diff --git a/service-user/pom.xml b/service-user/pom.xml
index 44e8121..6ce57b6 100644
--- a/service-user/pom.xml
+++ b/service-user/pom.xml
@@ -32,40 +32,42 @@
 
     <build>
         <finalName>service-user</finalName>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-dependency-plugin</artifactId>
-                <version>2.10</version>
-                <executions>
-                    <execution>
-                        <id>unpack</id>
-                        <phase>generate-resources</phase>
-                        <goals>
-                            <goal>unpack</goal>
-                        </goals>
-                        <configuration>
-                            <artifactItems>
-                                <artifactItem>
-                                    <groupId>com.java110</groupId>
-                                    <artifactId>java110-interface</artifactId>
-                                    <version>${microcommunity.version}</version>
-                                    <type>jar</type>
-                                    <overWrite>true</overWrite>
-                                    <outputDirectory>${project.build.directory}/classes</outputDirectory>
-                                </artifactItem>
-                            </artifactItems>
-                        </configuration>
-                    </execution>
-                </executions>
-            </plugin>
-            <plugin>
-                <groupId>org.springframework.boot</groupId>
-                <artifactId>spring-boot-maven-plugin</artifactId>
-                <configuration>
-                    <mainClass>com.java110.user.UserServiceApplicationStart</mainClass>
-                </configuration>
-            </plugin>
-        </plugins>
+        <pluginManagement>
+	        <plugins>
+	            <plugin>
+	                <groupId>org.apache.maven.plugins</groupId>
+	                <artifactId>maven-dependency-plugin</artifactId>
+	                <version>2.10</version>
+	                <executions>
+	                    <execution>
+	                        <id>unpack</id>
+	                        <phase>generate-resources</phase>
+	                        <goals>
+	                            <goal>unpack</goal>
+	                        </goals>
+	                        <configuration>
+	                            <artifactItems>
+	                                <artifactItem>
+	                                    <groupId>com.java110</groupId>
+	                                    <artifactId>java110-interface</artifactId>
+	                                    <version>${microcommunity.version}</version>
+	                                    <type>jar</type>
+	                                    <overWrite>true</overWrite>
+	                                    <outputDirectory>${project.build.directory}/classes</outputDirectory>
+	                                </artifactItem>
+	                            </artifactItems>
+	                        </configuration>
+	                    </execution>
+	                </executions>
+	            </plugin>
+	            <plugin>
+	                <groupId>org.springframework.boot</groupId>
+	                <artifactId>spring-boot-maven-plugin</artifactId>
+	                <configuration>
+	                    <mainClass>com.java110.user.UserServiceApplicationStart</mainClass>
+	                </configuration>
+	            </plugin>
+	        </plugins>
+        </pluginManagement>
     </build>
 </project>

--
Gitblit v1.8.0