Browse Source

fix: 工具模块打包插件错误

370774330@qq.com 5 years ago
parent
commit
9dad440ea1

+ 0 - 21
api/pom.xml

@@ -127,27 +127,6 @@
                     <encoding>UTF-8</encoding>
                     <encoding>UTF-8</encoding>
                 </configuration>
                 </configuration>
             </plugin>
             </plugin>
-            <plugin>
-                <groupId>org.springframework.boot</groupId>
-                <artifactId>spring-boot-maven-plugin</artifactId>
-                <version>2.3.7.RELEASE</version>
-                <configuration>
-                    <excludes>
-                        <exclude>
-                            <groupId>org.springframework.boot</groupId>
-                            <artifactId>spring-boot-configuration-processor</artifactId>
-                        </exclude>
-                    </excludes>
-                </configuration>
-                <executions>
-                    <execution>
-                        <id>repackage</id>
-                        <goals>
-                            <goal>repackage</goal>
-                        </goals>
-                    </execution>
-                </executions>
-            </plugin>
         </plugins>
         </plugins>
     </build>
     </build>
 
 

+ 0 - 21
common/pom.xml

@@ -97,27 +97,6 @@
                     <encoding>UTF-8</encoding>
                     <encoding>UTF-8</encoding>
                 </configuration>
                 </configuration>
             </plugin>
             </plugin>
-            <plugin>
-                <groupId>org.springframework.boot</groupId>
-                <artifactId>spring-boot-maven-plugin</artifactId>
-                <version>2.3.4.RELEASE</version>
-                <configuration>
-                    <excludes>
-                        <exclude>
-                            <groupId>org.springframework.boot</groupId>
-                            <artifactId>spring-boot-configuration-processor</artifactId>
-                        </exclude>
-                    </excludes>
-                </configuration>
-                <executions>
-                    <execution>
-                        <id>repackage</id>
-                        <goals>
-                            <goal>repackage</goal>
-                        </goals>
-                    </execution>
-                </executions>
-            </plugin>
         </plugins>
         </plugins>
     </build>
     </build>
 
 

+ 0 - 16
core/pom.xml

@@ -80,22 +80,6 @@
                     <encoding>UTF-8</encoding>
                     <encoding>UTF-8</encoding>
                 </configuration>
                 </configuration>
             </plugin>
             </plugin>
-            <plugin>
-                <groupId>org.springframework.boot</groupId>
-                <artifactId>spring-boot-maven-plugin</artifactId>
-                <version>2.3.7.RELEASE</version>
-                <configuration>
-                    <mainClass>com.devcloud.core.CoreApplication</mainClass>
-                </configuration>
-                <executions>
-                    <execution>
-                        <id>repackage</id>
-                        <goals>
-                            <goal>repackage</goal>
-                        </goals>
-                    </execution>
-                </executions>
-            </plugin>
         </plugins>
         </plugins>
     </build>
     </build>
 
 

+ 0 - 13
pom.xml

@@ -51,19 +51,6 @@
                     <encoding>UTF-8</encoding>
                     <encoding>UTF-8</encoding>
                 </configuration>
                 </configuration>
             </plugin>
             </plugin>
-            <plugin>
-                <groupId>org.springframework.boot</groupId>
-                <artifactId>spring-boot-maven-plugin</artifactId>
-                <version>2.3.4.RELEASE</version>
-                <executions>
-                    <execution>
-                        <id>repackage</id>
-                        <goals>
-                            <goal>repackage</goal>
-                        </goals>
-                    </execution>
-                </executions>
-            </plugin>
         </plugins>
         </plugins>
     </build>
     </build>
 
 

+ 9 - 0
web/src/main/java/seecoder/devcloud/web/service/project/BugListService.java

@@ -0,0 +1,9 @@
+package seecoder.devcloud.web.service.project;
+
+/**
+ * @author PuHong Weng
+ * @date 2021/3/21
+ * @description:
+ */
+public class BugListService {
+}

+ 12 - 0
web/src/main/java/seecoder/devcloud/web/service/project/CommitService.java

@@ -0,0 +1,12 @@
+package seecoder.devcloud.web.service.project;
+
+/**
+ * @author PuHong Weng
+ * @date 2021/3/21
+ * @description: 项目相关的 git commit 记录分析功能
+ */
+public interface CommitService {
+
+
+
+}