2023-07-05 11:40:25 +08:00
|
|
|
<?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">
|
|
|
|
<parent>
|
|
|
|
<groupId>com.ruoyi</groupId>
|
2023-07-08 16:36:43 +08:00
|
|
|
<artifactId>ruoyi-modules</artifactId>
|
2023-07-08 18:57:52 +08:00
|
|
|
<version>${revision}</version>
|
2023-07-05 11:40:25 +08:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2023-08-15 22:24:31 +08:00
|
|
|
<packaging>jar</packaging>
|
2023-07-05 11:40:25 +08:00
|
|
|
|
|
|
|
<artifactId>ruoyi-generator</artifactId>
|
|
|
|
|
|
|
|
<description>
|
|
|
|
generator代码生成
|
|
|
|
</description>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
<!--velocity代码生成使用模板 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.velocity</groupId>
|
|
|
|
<artifactId>velocity-engine-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- collections工具类 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-collections</groupId>
|
|
|
|
<artifactId>commons-collections</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- 通用工具-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.ruoyi</groupId>
|
2023-07-17 22:06:55 +08:00
|
|
|
<artifactId>ruoyi-common-core</artifactId>
|
2023-07-05 11:40:25 +08:00
|
|
|
</dependency>
|
|
|
|
|
2024-01-25 11:48:45 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.ruoyi</groupId>
|
|
|
|
<artifactId>ruoyi-common-log</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2023-08-15 22:24:31 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.ruoyi</groupId>
|
|
|
|
<artifactId>ruoyi-common-web</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2023-11-22 22:22:19 +08:00
|
|
|
|
2023-07-05 11:40:25 +08:00
|
|
|
</dependencies>
|
|
|
|
|
2023-08-15 22:24:31 +08:00
|
|
|
</project>
|