build: 优化模块命名 continew-webapi => continew-server,continew-module-system => continew-system

This commit is contained in:
2025-06-14 21:08:38 +08:00
parent 23fbb3d877
commit 71fee0f58d
291 changed files with 29 additions and 29 deletions

View File

@@ -35,7 +35,7 @@ jobs:
port: ${{ secrets.SERVER_PORT }}
username: ${{ secrets.SERVER_USERNAME }}
password: ${{ secrets.SERVER_PASSWORD }}
source: ./continew-webapi/target/app/*
source: ./continew-server/target/app/*
target: /docker/continew-admin
strip_components: 3
# 5、启动
@@ -48,5 +48,5 @@ jobs:
password: ${{ secrets.SERVER_PASSWORD }}
script: |
cd /docker
docker-compose up --force-recreate --build -d continew-admin-server
docker-compose up --force-recreate --build -d continew-server
docker images | grep none | awk '{print $3}' | xargs docker rmi

View File

@@ -283,7 +283,7 @@ git clone https://github.com/continew-org/continew-admin.git
```
continew-admin
├─ continew-webapiAPI 及打包部署模块)
├─ continew-serverAPI 及打包部署模块)
│ ├─ src
│ │ ├─ main
│ │ │ ├─ java/top/continew/admin
@@ -309,7 +309,7 @@ continew-admin
│ │ │ └─ logback-spring.xml日志配置文件
│ │ └─ test测试相关代码目录
│ └─ pom.xml包含打包相关配置
├─ continew-module-system系统管理模块存放系统管理相关业务功能例如部门管理、角色管理、用户管理等
├─ continew-system系统管理模块存放系统管理相关业务功能例如部门管理、角色管理、用户管理等
│ ├─ src
│ │ ├─ main
│ │ │ ├─ java/top/continew/admin

View File

@@ -9,7 +9,7 @@
<version>${revision}</version>
</parent>
<artifactId>continew-webapi</artifactId>
<artifactId>continew-server</artifactId>
<packaging>jar</packaging>
<name>${project.artifactId}</name>
@@ -31,7 +31,7 @@
<!-- 系统管理模块 -->
<dependency>
<groupId>top.continew</groupId>
<artifactId>continew-module-system</artifactId>
<artifactId>continew-system</artifactId>
</dependency>
<!-- 任务调度插件 -->

View File

Before

Width:  |  Height:  |  Size: 66 KiB

After

Width:  |  Height:  |  Size: 66 KiB

View File

@@ -9,7 +9,7 @@
<version>${revision}</version>
</parent>
<artifactId>continew-module-system</artifactId>
<artifactId>continew-system</artifactId>
<packaging>jar</packaging>
<name>${project.artifactId}</name>

Some files were not shown because too many files have changed in this diff Show More