feat(项目结构): 重构项目模块并添加新功能
-重命名 c_portal 模块为 chaos_api_common - 新增 chaos_api_domain、chaos_api_interface、chaos_api_service、chaos_api_data、chaos_api_web 和 chaos_api_websocket 模块 - 更新项目依赖,包括 Spring Boot、MyBatis-Plus 和 MySQL连接器 - 移除旧的 PortalApplication 类,创建新的 ChaosApiWebApplication 类作为项目入口
This commit is contained in:
28
chaos_api_domain/pom.xml
Normal file
28
chaos_api_domain/pom.xml
Normal file
@@ -0,0 +1,28 @@
|
||||
<?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>cn.nopj</groupId>
|
||||
<artifactId>chaos_api</artifactId>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>chaos_api_domain</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<name>chaos_api_domain</name>
|
||||
<description>Domain models and entities</description>
|
||||
|
||||
<properties>
|
||||
<maven.compiler.source>21</maven.compiler.source>
|
||||
<maven.compiler.target>21</maven.compiler.target>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
</properties>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>com.baomidou</groupId>
|
||||
<artifactId>mybatis-plus</artifactId>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
Reference in New Issue
Block a user