pom.xml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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>forge-flow</artifactId>
  8. <groupId>com.mdframe.forge</groupId>
  9. <version>${revision}</version>
  10. </parent>
  11. <artifactId>forge-flow-server</artifactId>
  12. <name>forge-flow-server</name>
  13. <description>Forge Flow 流程服务 - 基于 Flowable 的独立流程服务</description>
  14. <dependencies>
  15. <!-- MySQL驱动 -->
  16. <dependency>
  17. <groupId>com.mysql</groupId>
  18. <artifactId>mysql-connector-j</artifactId>
  19. </dependency>
  20. <!-- Forge Flow Plugin (核心业务逻辑) -->
  21. <dependency>
  22. <groupId>com.mdframe.forge</groupId>
  23. <artifactId>forge-plugin-flow</artifactId>
  24. <exclusions>
  25. <exclusion>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-security</artifactId>
  28. </exclusion>
  29. </exclusions>
  30. </dependency>
  31. <!-- Generator business flow services reference FlowClient; optional deps are not transitive. -->
  32. <dependency>
  33. <groupId>com.mdframe.forge</groupId>
  34. <artifactId>forge-flow-client</artifactId>
  35. </dependency>
  36. <!-- Forge ORM Starter (MyBatis Plus) -->
  37. <dependency>
  38. <groupId>com.mdframe.forge</groupId>
  39. <artifactId>forge-starter-orm</artifactId>
  40. </dependency>
  41. <!-- Forge Tenant Starter (多租户) -->
  42. <dependency>
  43. <groupId>com.mdframe.forge</groupId>
  44. <artifactId>forge-starter-tenant</artifactId>
  45. </dependency>
  46. <!-- Forge Web Starter -->
  47. <dependency>
  48. <groupId>com.mdframe.forge</groupId>
  49. <artifactId>forge-starter-web</artifactId>
  50. </dependency>
  51. <!-- Forge Auth Starter (认证授权) -->
  52. <dependency>
  53. <groupId>com.mdframe.forge</groupId>
  54. <artifactId>forge-starter-auth</artifactId>
  55. </dependency>
  56. <!-- Forge ID Starter -->
  57. <dependency>
  58. <groupId>com.mdframe.forge</groupId>
  59. <artifactId>forge-starter-id</artifactId>
  60. </dependency>
  61. <!-- Forge AI Plugin (Agent、对话、流式生成能力) -->
  62. <dependency>
  63. <groupId>com.mdframe.forge</groupId>
  64. <artifactId>forge-plugin-ai</artifactId>
  65. </dependency>
  66. <!-- 低代码业务对象落表适配(流程入口 BUSINESS_OBJECT/HYBRID 模式) -->
  67. <dependency>
  68. <groupId>com.mdframe.forge</groupId>
  69. <artifactId>forge-plugin-generator</artifactId>
  70. </dependency>
  71. <!-- 企业协同插件(COLLABORATION 消息渠道,待办企微卡片推送依赖本进程内渠道 Bean) -->
  72. <dependency>
  73. <groupId>com.mdframe.forge</groupId>
  74. <artifactId>forge-plugin-collaboration</artifactId>
  75. </dependency>
  76. <!-- Spring Data Redis (Pub/Sub 事件发布) -->
  77. <dependency>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-starter-data-redis</artifactId>
  80. </dependency>
  81. <!-- Lombok -->
  82. <dependency>
  83. <groupId>org.projectlombok</groupId>
  84. <artifactId>lombok</artifactId>
  85. <scope>provided</scope>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.springframework.boot</groupId>
  89. <artifactId>spring-boot-starter-test</artifactId>
  90. <scope>test</scope>
  91. </dependency>
  92. </dependencies>
  93. <build>
  94. <finalName>${project.artifactId}</finalName>
  95. <plugins>
  96. <plugin>
  97. <groupId>org.springframework.boot</groupId>
  98. <artifactId>spring-boot-maven-plugin</artifactId>
  99. <version>${spring-boot.version}</version>
  100. <executions>
  101. <execution>
  102. <goals>
  103. <goal>repackage</goal>
  104. </goals>
  105. </execution>
  106. </executions>
  107. </plugin>
  108. </plugins>
  109. </build>
  110. </project>