From a3c74985a49e34539cf2fb2b365e75c9041a1067 Mon Sep 17 00:00:00 2001 From: 潘志宝 <979469083@qq.com> Date: 星期三, 26 三月 2025 15:07:51 +0800 Subject: [PATCH] 动态上限 --- pom.xml | 42 +++++++++++++++++------------------------- 1 files changed, 17 insertions(+), 25 deletions(-) diff --git a/pom.xml b/pom.xml index ff99171..1df6e42 100644 --- a/pom.xml +++ b/pom.xml @@ -11,13 +11,13 @@ 快速开发框架,默认基础system,data,model </description> <modules> -<!-- <module>ansteel-api</module>--> + <module>ansteel-api</module> <module>ansteel-biz</module> </modules> <properties> - <revision>0.0.1</revision> + <revision>1.0.0</revision> <!-- Maven 相关 --> <java.version>1.8</java.version> <maven.compiler.source>${java.version}</maven.compiler.source> @@ -154,12 +154,6 @@ <version>${revision}</version> </dependency> - <!-- 消息队列相关 --> - <dependency> - <groupId>com.iailab</groupId> - <artifactId>iailab-common-mq</artifactId> - <version>${revision}</version> - </dependency> <!-- Web 相关 --> <dependency> @@ -374,23 +368,21 @@ </dependencyManagement> <build> - <!-- 设置构建的 jar 包名 --> - <finalName>${project.artifactId}</finalName> - <plugins> - <!-- 打包 --> - <plugin> - <groupId>org.springframework.boot</groupId> - <artifactId>spring-boot-maven-plugin</artifactId> - <version>${spring.boot.version}</version> - <executions> - <execution> - <goals> - <goal>repackage</goal> <!-- 将引入的 jar 打入其中 --> - </goals> - </execution> - </executions> - </plugin> - </plugins> + <pluginManagement> + <plugins> + <!-- maven-surefire-plugin 插件,用于运行单元测试。 --> + <!-- 注意,需要使用 3.0.X+,因为要支持 Junit 5 版本 --> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <version>${maven-surefire-plugin.version}</version> + <configuration> + <skip>true</skip> + </configuration> + </plugin> + <!-- maven-compiler-plugin 插件,解决 Lombok + MapStruct 组合 --> + </plugins> + </pluginManagement> </build> -- Gitblit v1.9.3