- 移除各模块中重复的 spring.config.import 配置 - 新增 bootstrap.yml 文件用于 wol-module-codegen 模块配置加载 - 在网关模块新增 codegen 路由规则 - 将通用依赖提升至父级 pom 统一管理 - 为 SaToken 认证失败添加详细日志记录- 优化认证异常处理逻辑,区分登录异常与其他认证异常 - 移除系统基础模块和代码生成模块中的冗余依赖声明
23 lines
724 B
XML
23 lines
724 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>com.agileboot</groupId>
|
|
<artifactId>wol-modules</artifactId>
|
|
<version>1.0.0</version>
|
|
</parent>
|
|
|
|
<artifactId>agileboot-system-base</artifactId>
|
|
|
|
<dependencies>
|
|
<!-- 获取系统信息 -->
|
|
<dependency>
|
|
<groupId>com.github.oshi</groupId>
|
|
<artifactId>oshi-core</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project>
|