Skip to content

Commit

Permalink
refactor: 移动日志配置和依赖至 webapi 模块
Browse files Browse the repository at this point in the history
  • Loading branch information
Charles7c committed Jul 18, 2024
1 parent 3a23db1 commit 48aae87
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 16 deletions.
6 changes: 0 additions & 6 deletions continew-admin-system/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,6 @@
<description>系统管理模块(存放系统管理相关业务功能,例如:部门管理、角色管理、用户管理等)</description>

<dependencies>
<!-- ContiNew Starter 日志模块 - HttpTracePro(Spring Boot Actuator HttpTrace 定制增强版) -->
<dependency>
<groupId>top.continew</groupId>
<artifactId>continew-starter-log-httptrace-pro</artifactId>
</dependency>

<!-- 公共模块(存放公共工具类,公共配置等) -->
<dependency>
<groupId>top.continew</groupId>
Expand Down
14 changes: 10 additions & 4 deletions continew-admin-webapi/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,16 @@
</properties>

<dependencies>
<!-- 系统管理模块(存放系统管理模块相关功能,例如:部门管理、角色管理、用户管理等-->
<!-- ContiNew Starter 日志模块 - HttpTracePro(Spring Boot Actuator HttpTrace 定制增强版-->
<dependency>
<groupId>top.continew</groupId>
<artifactId>continew-admin-system</artifactId>
<artifactId>continew-starter-log-httptrace-pro</artifactId>
</dependency>

<!-- 代码生成器插件(后续会改造为独立插件-->
<!-- 系统管理模块(存放系统管理模块相关功能,例如:部门管理、角色管理、用户管理等-->
<dependency>
<groupId>top.continew</groupId>
<artifactId>continew-admin-generator</artifactId>
<artifactId>continew-admin-system</artifactId>
</dependency>

<!-- 任务调度插件(后续会改造为独立插件) -->
Expand All @@ -44,6 +44,12 @@
<version>${revision}</version>
</dependency>

<!-- 代码生成器插件(后续会改造为独立插件) -->
<dependency>
<groupId>top.continew</groupId>
<artifactId>continew-admin-generator</artifactId>
</dependency>

<!-- Liquibase(用于管理数据库版本,跟踪、管理和应用数据库变化) -->
<dependency>
<groupId>org.liquibase</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package top.continew.admin.system.config.log;
package top.continew.admin.config.log;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package top.continew.admin.system.config.log;
package top.continew.admin.config.log;

import cn.dev33.satoken.SaManager;
import cn.dev33.satoken.stp.StpUtil;
Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -79,17 +79,17 @@
<version>${revision}</version>
</dependency>

<!-- 代码生成器插件(后续会改造为独立插件) -->
<!-- 任务调度插件(后续会改造为独立插件) -->
<dependency>
<groupId>top.continew</groupId>
<artifactId>continew-admin-generator</artifactId>
<artifactId>continew-admin-job</artifactId>
<version>${revision}</version>
</dependency>

<!-- 任务调度插件(后续会改造为独立插件) -->
<!-- 代码生成器插件(后续会改造为独立插件) -->
<dependency>
<groupId>top.continew</groupId>
<artifactId>continew-admin-job</artifactId>
<artifactId>continew-admin-generator</artifactId>
<version>${revision}</version>
</dependency>
</dependencies>
Expand Down

0 comments on commit 48aae87

Please sign in to comment.