From 4b6806c10c285fde708d89d6444ede84fc45bc75 Mon Sep 17 00:00:00 2001
From: k94314517 <8417338+k94314517@user.noreply.gitee.com>
Date: 星期一, 18 九月 2023 18:35:19 +0800
Subject: [PATCH] 基础字段

---
 server/company/pom.xml  |   34 +++++++++++++++++
 server/service/pom.xml  |    1 
 server/platform/pom.xml |   34 +++++++++++++++++
 server/pom.xml          |    3 +
 4 files changed, 72 insertions(+), 0 deletions(-)

diff --git a/server/company/pom.xml b/server/company/pom.xml
index d9e5f21..46badc0 100644
--- a/server/company/pom.xml
+++ b/server/company/pom.xml
@@ -24,4 +24,38 @@
             <version>1.0.0-SNAPSHOT</version>
         </dependency>
     </dependencies>
+
+    <build>
+        <finalName>company</finalName>
+        <resources>
+            <resource>
+                <directory>src/main/resources</directory>
+            </resource>
+        </resources>
+
+        <plugins>
+            <plugin>
+                <groupId>org.springframework.boot</groupId>
+                <artifactId>spring-boot-maven-plugin</artifactId>
+                <configuration>
+                    <fork>true</fork>
+                    <mainClass>com.doumee.CompanyApplication</mainClass>
+                    <layout>ZIP</layout>
+                </configuration>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>repackage</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+            <!--<plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-war-plugin</artifactId>
+            <version>2.6</version>
+            </plugin>-->
+
+        </plugins>
+    </build>
 </project>
\ No newline at end of file
diff --git a/server/platform/pom.xml b/server/platform/pom.xml
index 43c532f..95cc8db 100644
--- a/server/platform/pom.xml
+++ b/server/platform/pom.xml
@@ -21,4 +21,38 @@
             <version>1.0.0-SNAPSHOT</version>
         </dependency>
     </dependencies>
+
+    <build>
+        <finalName>platform</finalName>
+        <resources>
+            <resource>
+                <directory>src/main/resources</directory>
+            </resource>
+        </resources>
+
+        <plugins>
+            <plugin>
+                <groupId>org.springframework.boot</groupId>
+                <artifactId>spring-boot-maven-plugin</artifactId>
+                <configuration>
+                    <fork>true</fork>
+                    <mainClass>com.doumee.PlatformApplication</mainClass>
+                    <layout>ZIP</layout>
+                </configuration>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>repackage</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+            <!--<plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-war-plugin</artifactId>
+            <version>2.6</version>
+            </plugin>-->
+
+        </plugins>
+    </build>
 </project>
\ No newline at end of file
diff --git a/server/pom.xml b/server/pom.xml
index 012fa87..57b0d85 100644
--- a/server/pom.xml
+++ b/server/pom.xml
@@ -234,6 +234,9 @@
       </plugin>
     </plugins>
   </build>
+
+
+
   <!--<build>
 
     <finalName>${project.artifactId}</finalName>
diff --git a/server/service/pom.xml b/server/service/pom.xml
index 5ff9058..00f58b5 100644
--- a/server/service/pom.xml
+++ b/server/service/pom.xml
@@ -17,4 +17,5 @@
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     </properties>
 
+
 </project>
\ No newline at end of file

--
Gitblit v1.9.3