feat(): 添加打包配置

dev
xinzirun 2024-10-12 09:31:31 +08:00
parent a63d614a23
commit 407d4ec270
3 changed files with 33 additions and 4 deletions

View File

@ -100,4 +100,21 @@
<artifactId>cloud-modules-enterprise-cache</artifactId> <artifactId>cloud-modules-enterprise-cache</artifactId>
</dependency> </dependency>
</dependencies> </dependencies>
<build>
<finalName>${project.artifactId}</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project> </project>

View File

@ -25,7 +25,6 @@ public class BasicEvent<T> extends ApplicationEvent {
this.data = data; this.data = data;
} }
/** /**
* *
* *

View File

@ -70,9 +70,22 @@
<artifactId>cloud-common-core</artifactId> <artifactId>cloud-common-core</artifactId>
<version>3.6.3</version> <version>3.6.3</version>
</dependency> </dependency>
</dependencies> </dependencies>
<build>
<finalName>${project.artifactId}</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project> </project>