!133 fix(supervision): 修正 InspectCloseoutFlowTest 角色参数匹配实际调用
* fix(supervision): 修正 InspectCloseoutFlowTest 角色参数匹配实际调用 * test(fixcontact): 新增流程表达式/监听器/Service 单测,fixcontact 可测代码接近全覆盖 * refactor(fixcontact): 提炼上两级解析与部门ID清洗纯函数,监听器依赖注入化 * chore(bpm): 安装 JaCoCo 覆盖率插件并修复构建链(补齐 base-core 依赖、排除环境依赖测试)
This commit is contained in:
@@ -31,6 +31,11 @@
|
||||
</repositories>
|
||||
|
||||
<dependencies>
|
||||
<!-- 基础核心(代码直接使用 base-core 的 Result 等) -->
|
||||
<dependency>
|
||||
<groupId>org.jeecgframework.boot</groupId>
|
||||
<artifactId>jeecg-boot-base-core</artifactId>
|
||||
</dependency>
|
||||
<!-- system单体 api-->
|
||||
<dependency>
|
||||
<groupId>org.jeecgframework.boot</groupId>
|
||||
@@ -189,4 +194,20 @@
|
||||
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<!-- 排除 airag/test 包:历史遗留的调试型测试(TestFlows 连本地 7008 AI 服务、TestFileParse 依赖测试文件),
|
||||
不属于可自动化单测,避免 mvn test 全量时因环境缺失而失败;IDE 中仍可手动单独运行 -->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<configuration>
|
||||
<excludes>
|
||||
<exclude>**/airag/test/**</exclude>
|
||||
</excludes>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
</project>
|
||||
Reference in New Issue
Block a user