pusong-crm/pusong-modules/pusong-generator/pom.xml

53 lines
1.5 KiB
XML
Raw Normal View History

2024-07-02 13:55:07 +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>
2024-07-25 08:39:09 +08:00
<groupId>com.pusong</groupId>
<artifactId>pusong-modules</artifactId>
2024-07-02 13:55:07 +08:00
<version>${revision}</version>
</parent>
<modelVersion>4.0.0</modelVersion>
2024-07-25 08:39:09 +08:00
<artifactId>pusong-generator</artifactId>
2024-07-02 13:55:07 +08:00
<description>
generator 代码生成
</description>
<dependencies>
<!-- 通用工具-->
<dependency>
2024-07-25 08:39:09 +08:00
<groupId>com.pusong</groupId>
<artifactId>pusong-common-core</artifactId>
2024-07-02 13:55:07 +08:00
</dependency>
<dependency>
2024-07-25 08:39:09 +08:00
<groupId>com.pusong</groupId>
<artifactId>pusong-common-doc</artifactId>
2024-07-02 13:55:07 +08:00
</dependency>
<dependency>
2024-07-25 08:39:09 +08:00
<groupId>com.pusong</groupId>
<artifactId>pusong-common-mybatis</artifactId>
2024-07-02 13:55:07 +08:00
</dependency>
<dependency>
2024-07-25 08:39:09 +08:00
<groupId>com.pusong</groupId>
<artifactId>pusong-common-web</artifactId>
2024-07-02 13:55:07 +08:00
</dependency>
<dependency>
2024-07-25 08:39:09 +08:00
<groupId>com.pusong</groupId>
<artifactId>pusong-common-log</artifactId>
2024-07-02 13:55:07 +08:00
</dependency>
<!--velocity代码生成使用模板 -->
<dependency>
<groupId>org.apache.velocity</groupId>
<artifactId>velocity-engine-core</artifactId>
</dependency>
</dependencies>
</project>