Merge remote-tracking branch 'origin/master'

This commit is contained in:
张松
2025-02-11 10:33:50 +08:00
2 changed files with 30 additions and 0 deletions

1
.gitignore vendored
View File

@@ -31,3 +31,4 @@ build/
### VS Code ###
.vscode/
/jars/

View File

@@ -48,4 +48,33 @@
</dependency>
</dependencies>
<build>
<plugins>
<!-- spring boot 打包插件 -->
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<executable>true</executable>
<!-- <includeSystemScope>true</includeSystemScope>-->
<outputDirectory>../../jars</outputDirectory>
</configuration>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skipTests>true</skipTests>
</configuration>
</plugin>
</plugins>
</build>
</project>