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-report/pom.xml | 74 +++++++++++++++++++------------------
1 files changed, 38 insertions(+), 36 deletions(-)
diff --git a/service-report/pom.xml b/service-report/pom.xml
index 8c3af17..29c785a 100644
--- a/service-report/pom.xml
+++ b/service-report/pom.xml
@@ -32,40 +32,42 @@
<build>
<finalName>service-report</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.report.ReportServiceApplicationStart</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.report.ReportServiceApplicationStart</mainClass>
+ </configuration>
+ </plugin>
+ </plugins>
+ </pluginManagement>
</build>
-</project>
+</project>
\ No newline at end of file
--
Gitblit v1.8.0