- 移除各模块中重复的 spring.config.import 配置 - 新增 bootstrap.yml 文件用于 wol-module-codegen 模块配置加载 - 在网关模块新增 codegen 路由规则 - 将通用依赖提升至父级 pom 统一管理 - 为 SaToken 认证失败添加详细日志记录- 优化认证异常处理逻辑,区分登录异常与其他认证异常 - 移除系统基础模块和代码生成模块中的冗余依赖声明
46 lines
1.5 KiB
XML
46 lines
1.5 KiB
XML
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>com.agileboot</groupId>
|
|
<artifactId>agileboot</artifactId>
|
|
<version>1.0.0</version>
|
|
</parent>
|
|
<artifactId>wol-modules</artifactId>
|
|
<packaging>pom</packaging>
|
|
|
|
<modules>
|
|
<module>agileboot-system-base</module>
|
|
<module>wol-module-codegen</module>
|
|
<module>wol-module-ai</module>
|
|
</modules>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.agileboot</groupId>
|
|
<artifactId>wol-common-nacos</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.agileboot</groupId>
|
|
<artifactId>wol-common-satoken</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.agileboot</groupId>
|
|
<artifactId>wol-common-web</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.agileboot</groupId>
|
|
<artifactId>wol-common-mybatis</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.agileboot</groupId>
|
|
<artifactId>wol-common-redis</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.agileboot</groupId>
|
|
<artifactId>wol-domain</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project>
|