From 77970ad391881f9c49a3f15dda8bb447e9326fd2 Mon Sep 17 00:00:00 2001
From: rk <94314517@qq.com>
Date: 星期五, 27 二月 2026 15:07:33 +0800
Subject: [PATCH] 小程序 接口开发
---
server/dmmall_web/pom.xml | 33 +++++++++++++++++++++++++++++++--
1 files changed, 31 insertions(+), 2 deletions(-)
diff --git a/server/dmmall_web/pom.xml b/server/dmmall_web/pom.xml
index 84928ec..4db40e2 100644
--- a/server/dmmall_web/pom.xml
+++ b/server/dmmall_web/pom.xml
@@ -8,9 +8,7 @@
<artifactId>dmmall</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>
-
<artifactId>dmmall_web</artifactId>
-
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
@@ -24,4 +22,35 @@
<version>1.0.0-SNAPSHOT</version>
</dependency>
</dependencies>
+ <build>
+ <finalName>dmmall_web_api</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.InterfaceApplication</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
--
Gitblit v1.9.3