调整金额

This commit is contained in:
2026-01-30 15:52:17 +08:00
parent f0ec17934f
commit d3af15df1c
7 changed files with 49 additions and 6 deletions

27
pom.xml
View File

@@ -92,11 +92,38 @@
</dependency>
</dependencies>
<build>
<finalName>bocai</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>net.roseboy</groupId>
<artifactId>classfinal-maven-plugin</artifactId>
<version>1.2.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>classFinal</goal>
</goals>
</execution>
</executions>
<configuration>
<!-- 加密密码(必填) -->
<password>#</password>
<!-- 需加密的包名(可选,多个用逗号分隔) -->
<packages>com.tem.bocai</packages>
<!-- 排除加密的类(可选) -->
<excludes>org.springframework.*</excludes>
<!-- 机器码(可选,绑定机器) -->
<!-- <code>xxxxxx</code>-->
<!-- 调试模式(可选) -->
<debug>false</debug>
</configuration>
</plugin>
</plugins>
</build>
</project>