Files
cf_imes_server/cf-framework/pom.xml
T
2024-03-05 11:39:57 +08:00

93 lines
3.7 KiB
XML

<?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.cf.imes</groupId>
<artifactId>cf</artifactId>
<version>${revision}</version>
</parent>
<packaging>pom</packaging>
<modules>
<module>cf-common</module>
<module>cf-spring-boot-starter-env</module>
<module>cf-spring-boot-starter-banner</module>
<module>cf-spring-boot-starter-mybatis</module>
<module>cf-spring-boot-starter-redis</module>
<module>cf-spring-boot-starter-web</module>
<module>cf-spring-boot-starter-security</module>
<module>cf-spring-boot-starter-file</module>
<module>cf-spring-boot-starter-monitor</module>
<module>cf-spring-boot-starter-protection</module>
<!-- <module>cf-spring-boot-starter-config</module>-->
<module>cf-spring-boot-starter-job</module>
<module>cf-spring-boot-starter-mq</module>
<module>cf-spring-boot-starter-rpc</module>
<module>cf-spring-boot-starter-excel</module>
<module>cf-spring-boot-starter-test</module>
<module>cf-spring-boot-starter-biz-operatelog</module>
<module>cf-spring-boot-starter-biz-dict</module>
<module>cf-spring-boot-starter-biz-sms</module>
<module>cf-spring-boot-starter-biz-pay</module>
<module>cf-spring-boot-starter-biz-organ</module>
<module>cf-spring-boot-starter-biz-data-permission</module>
<module>cf-spring-boot-starter-biz-error-code</module>
<module>cf-spring-boot-starter-biz-ip</module>
<module>cf-spring-boot-starter-flowable</module>
<module>cf-spring-boot-starter-captcha</module>
<module>cf-spring-boot-starter-websocket</module>
<module>cf-spring-boot-starter-desensitize</module>
<module>cf-spring-boot-starter-elasticsearch</module>
</modules>
<artifactId>cf-framework</artifactId>
<description>
该包是技术组件,每个子包,代表一个组件。每个组件包括两部分:
1. core 包:是该组件的核心封装
2. config 包:是该组件基于 Spring 的配置
技术组件,也分成两类:
1. 框架组件:和我们熟悉的 MyBatis、Redis 等等的拓展
2. 业务组件:和业务相关的组件的封装,例如说数据字典、操作日志等等。
如果是业务组件,Maven 名字会包含 biz
</description>
<build>
<plugins>
<!-- 统一 revision 版本 -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<version>1.2.4</version>
<configuration>
<flattenMode>resolveCiFriendliesOnly</flattenMode>
<updatePomFile>true</updatePomFile>
</configuration>
<executions>
<execution>
<goals>
<goal>flatten</goal>
</goals>
<id>flatten</id>
<phase>process-resources</phase>
</execution>
<execution>
<goals>
<goal>clean</goal>
</goals>
<id>flatten.clean</id>
<phase>clean</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>