[feat] init pms/cms module packages

This commit is contained in:
2024-07-02 20:21:20 +08:00
parent 7786233ae8
commit 4a407d2f8f
13 changed files with 256 additions and 15 deletions

View File

@ -0,0 +1,26 @@
<?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.iocoder.boot</groupId>
<artifactId>yudao-module-cms</artifactId>
<version>${revision}</version>
</parent>
<artifactId>yudao-module-cms-api</artifactId>
<packaging>jar</packaging>
<name>${project.artifactId}</name>
<description>
cms 模块 API暴露给其它模块调用
</description>
<dependencies>
<dependency>
<groupId>cn.iocoder.boot</groupId>
<artifactId>yudao-common</artifactId>
</dependency>
</dependencies>
</project>

View File

@ -0,0 +1,6 @@
/**
* @author hhyykk
* @description
* @date 2024/7/2
*/
package cn.iocoder.yudao.module.cms;