diff --git a/pom.xml b/pom.xml index e4136bef4..95e7c6e2d 100644 --- a/pom.xml +++ b/pom.xml @@ -25,6 +25,7 @@ yudao-module-erp yudao-module-mes yudao-module-iot + yudao-module-common ${project.artifactId} 芋道项目基础脚手架 diff --git a/yudao-module-common/pom.xml b/yudao-module-common/pom.xml new file mode 100644 index 000000000..3c45d90ff --- /dev/null +++ b/yudao-module-common/pom.xml @@ -0,0 +1,23 @@ + + + + cn.iocoder.boot + yudao + ${revision} + + 4.0.0 + + yudao-module-common-api + yudao-module-common-biz + + yudao-module-common + pom + + ${project.artifactId} + + common 模块下,存放通用的业务逻辑和工具类,供其他模块调用。 + + + \ No newline at end of file diff --git a/yudao-module-common/yudao-module-common-api/pom.xml b/yudao-module-common/yudao-module-common-api/pom.xml new file mode 100644 index 000000000..2e2e71459 --- /dev/null +++ b/yudao-module-common/yudao-module-common-api/pom.xml @@ -0,0 +1,33 @@ + + + + yudao-module-common + cn.iocoder.boot + ${revision} + + 4.0.0 + + yudao-module-common-api + jar + + ${project.artifactId} + common 模块 API,暴露给其它模块调用 + + + + + cn.iocoder.boot + yudao-common + + + + + org.springframework.boot + spring-boot-starter-validation + true + + + + \ No newline at end of file diff --git a/yudao-module-common/yudao-module-common-biz/pom.xml b/yudao-module-common/yudao-module-common-biz/pom.xml new file mode 100644 index 000000000..418ad2281 --- /dev/null +++ b/yudao-module-common/yudao-module-common-biz/pom.xml @@ -0,0 +1,61 @@ + + + + yudao-module-common + cn.iocoder.boot + ${revision} + + 4.0.0 + + yudao-module-common-biz + jar + + ${project.artifactId} + common 模块业务实现 + + + + + cn.iocoder.boot + yudao-module-common-api + ${revision} + + + + + cn.iocoder.boot + yudao-spring-boot-starter-mybatis + + + cn.iocoder.boot + yudao-spring-boot-starter-redis + + + cn.iocoder.boot + yudao-spring-boot-starter-web + + + + + cn.iocoder.boot + yudao-spring-boot-starter-biz-data-permission + + + cn.iocoder.boot + yudao-spring-boot-starter-biz-tenant + + + cn.iocoder.boot + yudao-spring-boot-starter-biz-ip + + + + + cn.iocoder.boot + yudao-spring-boot-starter-excel + + + + \ No newline at end of file