From fd10524313fa9178c4897ee955e58647d02f8dc9 Mon Sep 17 00:00:00 2001
From: k94314517 <8417338+k94314517@user.noreply.gitee.com>
Date: 星期四, 21 九月 2023 14:51:39 +0800
Subject: [PATCH] 代码提交
---
server/platform/pom.xml | 28 ++++++++++++++++++++++++++--
1 files changed, 26 insertions(+), 2 deletions(-)
diff --git a/server/platform/pom.xml b/server/platform/pom.xml
index c283208..4f4fe94 100644
--- a/server/platform/pom.xml
+++ b/server/platform/pom.xml
@@ -8,9 +8,7 @@
<artifactId>preselect</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>
-
<artifactId>platform</artifactId>
-
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
@@ -23,4 +21,30 @@
<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>
+ </plugins>
+ </build>
</project>
\ No newline at end of file
--
Gitblit v1.9.3