Compare commits

...

1 Commits
main ... dev

2 changed files with 26 additions and 10 deletions

10
pom.xml
View File

@ -13,7 +13,6 @@
<name>ray</name> <name>ray</name>
<description>rayc.top 服务端程序</description> <description>rayc.top 服务端程序</description>
<modules> <modules>
<module>ray-dependencies</module> <module>ray-dependencies</module>
<module>ray-infrastructure-utility</module> <module>ray-infrastructure-utility</module>
@ -44,13 +43,4 @@
</dependencies> </dependencies>
</dependencyManagement> </dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project> </project>

View File

@ -41,4 +41,30 @@
</dependency> </dependency>
</dependencies> </dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>3.1.2</version>
<configuration>
<mainClass>top.rayc.Application</mainClass>
<!-- <excludes>
<exclude>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</exclude>
</excludes> -->
</configuration>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project> </project>