refactor: 重构为多模块

This commit is contained in:
Ray.Hao
2026-04-25 16:17:08 +08:00
parent 63c34a4218
commit 482990cba1
351 changed files with 953 additions and 1088 deletions

41
youlai-codegen/pom.xml Normal file
View File

@@ -0,0 +1,41 @@
<?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.youlai</groupId>
<artifactId>youlai-boot</artifactId>
<version>4.3.0</version>
</parent>
<artifactId>youlai-codegen</artifactId>
<description>代码生成器模块 - 可视化配置的前后端代码生成</description>
<dependencies>
<dependency>
<groupId>com.youlai</groupId>
<artifactId>youlai-common</artifactId>
</dependency>
<dependency>
<groupId>com.youlai</groupId>
<artifactId>youlai-framework</artifactId>
</dependency>
<!-- Velocity 模板引擎 -->
<dependency>
<groupId>org.apache.velocity</groupId>
<artifactId>velocity-engine-core</artifactId>
<version>${velocity.version}</version>
</dependency>
<!-- MyBatis-Plus 代码生成器 -->
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-generator</artifactId>
<version>${mybatis-plus-generator.version}</version>
</dependency>
</dependencies>
</project>