pom.xml 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  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. <parent>
  6. <groupId>com.citu</groupId>
  7. <artifactId>citu-module-bpm</artifactId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>citu-module-bpm-biz</artifactId>
  12. <name>${project.artifactId}</name>
  13. <description>
  14. bpm 包下,业务流程管理(Business Process Management),我们放工作流的功能,基于 Flowable 6 版本实现。
  15. 例如说:流程定义、表单配置、审核中心(我的申请、我的待办、我的已办)等等 </description>
  16. <dependencies>
  17. <!-- Spring Cloud 基础 -->
  18. <dependency>
  19. <groupId>org.springframework.cloud</groupId>
  20. <artifactId>spring-cloud-starter-bootstrap</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.citu</groupId>
  24. <artifactId>citu-module-bpm-api</artifactId>
  25. <version>${revision}</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.citu</groupId>
  29. <artifactId>citu-module-system-api</artifactId>
  30. <version>${revision}</version>
  31. </dependency>
  32. <!-- 业务组件 -->
  33. <dependency>
  34. <groupId>com.citu</groupId>
  35. <artifactId>citu-spring-boot-starter-biz-data-permission</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.citu</groupId>
  39. <artifactId>citu-spring-boot-starter-biz-tenant</artifactId>
  40. </dependency>
  41. <!-- Web 相关 -->
  42. <dependency>
  43. <groupId>com.citu</groupId>
  44. <artifactId>citu-spring-boot-starter-security</artifactId>
  45. </dependency>
  46. <!-- DB 相关 -->
  47. <dependency>
  48. <groupId>com.citu</groupId>
  49. <artifactId>citu-spring-boot-starter-mybatis</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.citu</groupId>
  53. <artifactId>citu-spring-boot-starter-redis</artifactId>
  54. </dependency>
  55. <!-- RPC 远程调用相关 -->
  56. <dependency>
  57. <groupId>com.citu</groupId>
  58. <artifactId>citu-spring-boot-starter-rpc</artifactId>
  59. </dependency>
  60. <!-- Registry 注册中心相关 -->
  61. <dependency>
  62. <groupId>com.alibaba.cloud</groupId>
  63. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  64. </dependency>
  65. <!-- Config 配置中心相关 -->
  66. <dependency>
  67. <groupId>com.alibaba.cloud</groupId>
  68. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  69. </dependency>
  70. <!-- 服务保障相关 TODO 暂时去掉 -->
  71. <!-- <dependency>-->
  72. <!-- <groupId>com.citu</groupId>-->
  73. <!-- <artifactId>citu-spring-boot-starter-protection</artifactId>-->
  74. <!-- </dependency>-->
  75. <!-- Test 测试相关 -->
  76. <dependency>
  77. <groupId>com.citu</groupId>
  78. <artifactId>citu-spring-boot-starter-test</artifactId>
  79. </dependency>
  80. <!-- 监控相关 -->
  81. <dependency>
  82. <groupId>com.citu</groupId>
  83. <artifactId>citu-spring-boot-starter-monitor</artifactId>
  84. </dependency>
  85. <!-- 工具类相关 -->
  86. <dependency>
  87. <groupId>com.citu</groupId>
  88. <artifactId>citu-spring-boot-starter-excel</artifactId>
  89. </dependency>
  90. <!-- Flowable 工作流相关 -->
  91. <dependency>
  92. <groupId>org.flowable</groupId>
  93. <artifactId>flowable-spring-boot-starter-process</artifactId>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.flowable</groupId>
  97. <artifactId>flowable-spring-boot-starter-actuator</artifactId>
  98. </dependency>
  99. </dependencies>
  100. <build>
  101. <!-- 设置构建的 jar 包名 -->
  102. <finalName>${project.artifactId}</finalName>
  103. <plugins>
  104. <!-- 打包 -->
  105. <plugin>
  106. <groupId>org.springframework.boot</groupId>
  107. <artifactId>spring-boot-maven-plugin</artifactId>
  108. <version>${spring.boot.version}</version>
  109. <executions>
  110. <execution>
  111. <goals>
  112. <goal>repackage</goal> <!-- 将引入的 jar 打入其中 -->
  113. </goals>
  114. </execution>
  115. </executions>
  116. </plugin>
  117. </plugins>
  118. </build>
  119. </project>