mirror of
http://192.168.1.205:9980/cf_devdept2/cf_imes_server.git
synced 2026-08-12 21:02:08 +08:00
88 lines
3.5 KiB
XML
88 lines
3.5 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-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-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-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-id</module>
|
|
<module>cf-spring-boot-starter-biz-ip</module>
|
|
|
|
<module>cf-spring-boot-starter-flowable</module>
|
|
<module>cf-spring-boot-starter-websocket</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>
|