【修改】 pom文件,以及项目中多余模块

This commit is contained in:
dlaren
2025-07-29 20:01:02 +08:00
parent fd22f75657
commit f96250f868
5 changed files with 37 additions and 446 deletions

View File

@@ -23,42 +23,38 @@ public class BannerApplicationRunner implements ApplicationRunner {
log.info("\n----------------------------------------------------------\n\t" +
"项目启动成功!\n\t");
// 数据报表
if (isNotPresent("pc.exam.pp.module.report.framework.security.config.SecurityConfiguration")) {
System.out.println("[报表模块 exam-module-report - 已禁用]");
}
// 工作流
if (isNotPresent("pc.exam.pp.module.bpm.framework.flowable.config.BpmFlowableConfiguration")) {
System.out.println("[工作流模块 exam-module-bpm - 已禁用]");
}
// 商城系统
if (isNotPresent("pc.exam.pp.module.trade.framework.web.config.TradeWebConfiguration")) {
System.out.println("[商城系统 exam-module-mall - 已禁用]");
}
// ERP 系统
if (isNotPresent("pc.exam.pp.module.erp.framework.web.config.ErpWebConfiguration")) {
System.out.println("[ERP 系统 exam-module-erp - 已禁用]");
}
// CRM 系统
if (isNotPresent("pc.exam.pp.module.crm.framework.web.config.CrmWebConfiguration")) {
System.out.println("[CRM 系统 exam-module-crm - 已禁用]");
}
// 微信公众号
if (isNotPresent("pc.exam.pp.module.mp.framework.mp.config.MpConfiguration")) {
System.out.println("[微信公众号 exam-module-mp - 已禁用]");
}
// 支付平台
if (isNotPresent("pc.exam.pp.module.pay.framework.pay.config.PayConfiguration")) {
System.out.println("[支付系统 exam-module-pay - 已禁用]");
}
// AI 大模型
if (isNotPresent("pc.exam.pp.module.ai.framework.web.config.AiWebConfiguration")) {
System.out.println("[AI 大模型 exam-module-ai - 已禁用]");
}
// IoT 物联网
if (isNotPresent("pc.exam.pp.module.iot.framework.web.config.IotWebConfiguration")) {
System.out.println("[IoT 物联网 exam-module-iot - 已禁用]");
}
// // 数据报表
// if (isNotPresent("pc.exam.pp.module.report.framework.security.config.SecurityConfiguration")) {
// System.out.println("[报表模块 exam-module-report - 已禁用]");
// }
// // 工作流
// if (isNotPresent("pc.exam.pp.module.bpm.framework.flowable.config.BpmFlowableConfiguration")) {
// System.out.println("[工作流模块 exam-module-bpm - 已禁用]");
// }
// // 商城系统
// if (isNotPresent("pc.exam.pp.module.trade.framework.web.config.TradeWebConfiguration")) {
// System.out.println("[商城系统 exam-module-mall - 已禁用]");
// }
// // ERP 系统
// if (isNotPresent("pc.exam.pp.module.erp.framework.web.config.ErpWebConfiguration")) {
// System.out.println("[ERP 系统 exam-module-erp - 已禁用]");
// }
// // CRM 系统
// if (isNotPresent("pc.exam.pp.module.crm.framework.web.config.CrmWebConfiguration")) {
// System.out.println("[CRM 系统 exam-module-crm - 已禁用]");
// }
// // 微信公众号
// if (isNotPresent("pc.exam.pp.module.mp.framework.mp.config.MpConfiguration")) {
// System.out.println("[微信公众号 exam-module-mp - 已禁用]");
// }
// // 支付平台
// if (isNotPresent("pc.exam.pp.module.pay.framework.pay.config.PayConfiguration")) {
// System.out.println("[支付系统 exam-module-pay - 已禁用]");
// }
// // AI 大模型
// if (isNotPresent("pc.exam.pp.module.ai.framework.web.config.AiWebConfiguration")) {
// System.out.println("[AI 大模型 exam-module-ai - 已禁用]");
// }
});
}