pom.xml 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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-client</artifactId>
  12. <name>forge-flow-client</name>
  13. <description>Forge Flow 客户端 - 供其他服务调用流程服务</description>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.mdframe.forge</groupId>
  17. <artifactId>forge-starter-job</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.mdframe.forge</groupId>
  21. <artifactId>forge-starter-outbound</artifactId>
  22. </dependency>
  23. <!-- Lombok -->
  24. <dependency>
  25. <groupId>org.projectlombok</groupId>
  26. <artifactId>lombok</artifactId>
  27. <scope>provided</scope>
  28. </dependency>
  29. <!-- Jackson for JSON -->
  30. <dependency>
  31. <groupId>com.fasterxml.jackson.core</groupId>
  32. <artifactId>jackson-databind</artifactId>
  33. </dependency>
  34. <!-- Jackson JSR310(LocalDateTime 序列化支持) -->
  35. <dependency>
  36. <groupId>com.fasterxml.jackson.datatype</groupId>
  37. <artifactId>jackson-datatype-jsr310</artifactId>
  38. </dependency>
  39. <!-- Spring Web (for RestTemplate) -->
  40. <dependency>
  41. <groupId>org.springframework</groupId>
  42. <artifactId>spring-web</artifactId>
  43. </dependency>
  44. <!-- Spring Boot AutoConfigure(自动配置支持) -->
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-autoconfigure</artifactId>
  48. <optional>true</optional>
  49. </dependency>
  50. <!-- Spring Boot Configuration Processor(IDE 配置提示) -->
  51. <dependency>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-configuration-processor</artifactId>
  54. <optional>true</optional>
  55. </dependency>
  56. <!-- AspectJ(@FlowStart 切面支持) -->
  57. <dependency>
  58. <groupId>org.springframework.boot</groupId>
  59. <artifactId>spring-boot-starter-aop</artifactId>
  60. <optional>true</optional>
  61. </dependency>
  62. <!-- Redis(@FlowCallback 订阅支持,可选) -->
  63. <dependency>
  64. <groupId>org.springframework.boot</groupId>
  65. <artifactId>spring-boot-starter-data-redis</artifactId>
  66. <optional>true</optional>
  67. </dependency>
  68. <!-- Tenant context for async flow callbacks -->
  69. <dependency>
  70. <groupId>com.mdframe.forge</groupId>
  71. <artifactId>forge-starter-tenant</artifactId>
  72. </dependency>
  73. <dependency>
  74. <groupId>jakarta.servlet</groupId>
  75. <artifactId>jakarta.servlet-api</artifactId>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-starter-test</artifactId>
  80. <scope>test</scope>
  81. </dependency>
  82. </dependencies>
  83. </project>