pom.xml 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <artifactId>cloud</artifactId>
  8. <groupId>com.csitc</groupId>
  9. <version>${revision}</version>
  10. </parent>
  11. <packaging>pom</packaging>
  12. <modules>
  13. <module>cloud-common</module>
  14. <module>cloud-spring-boot-starter-banner</module>
  15. <module>cloud-spring-boot-starter-mybatis</module>
  16. <module>cloud-spring-boot-starter-redis</module>
  17. <module>cloud-spring-boot-starter-web</module>
  18. <module>cloud-spring-boot-starter-security</module>
  19. <module>cloud-spring-boot-starter-file</module>
  20. <module>cloud-spring-boot-starter-monitor</module>
  21. <module>cloud-spring-boot-starter-protection</module>
  22. <module>cloud-spring-boot-starter-job</module>
  23. <module>cloud-spring-boot-starter-mq</module>
  24. <module>cloud-spring-boot-starter-excel</module>
  25. <module>cloud-spring-boot-starter-test</module>
  26. <module>cloud-spring-boot-starter-biz-operatelog</module>
  27. <module>cloud-spring-boot-starter-biz-dict</module>
  28. <module>cloud-spring-boot-starter-biz-sms</module>
  29. <module>cloud-spring-boot-starter-biz-pay</module>
  30. <module>cloud-spring-boot-starter-biz-weixin</module>
  31. <module>cloud-spring-boot-starter-biz-social</module>
  32. <module>cloud-spring-boot-starter-biz-tenant</module>
  33. <module>cloud-spring-boot-starter-biz-data-permission</module>
  34. <module>cloud-spring-boot-starter-biz-error-code</module>
  35. <module>cloud-spring-boot-starter-biz-ip</module>
  36. <module>cloud-spring-boot-starter-flowable</module>
  37. <module>cloud-spring-boot-starter-captcha</module>
  38. <!-- <module>cloud-spring-boot-starter-websocket</module>-->
  39. <module>cloud-spring-boot-starter-desensitize</module>
  40. <!-- <module>cloud-spring-boot-starter-drools</module>-->
  41. </modules>
  42. <artifactId>cloud-framework</artifactId>
  43. <description>
  44. 该包是技术组件,每个子包,代表一个组件。每个组件包括两部分:
  45. 1. core 包:是该组件的核心封装
  46. 2. config 包:是该组件基于 Spring 的配置
  47. 技术组件,也分成两类:
  48. 1. 框架组件:和我们熟悉的 MyBatis、Redis 等等的拓展
  49. 2. 业务组件:和业务相关的组件的封装,例如说数据字典、操作日志等等。
  50. 如果是业务组件,Maven 名字会包含 biz
  51. </description>
  52. </project>