| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- <?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>
- <artifactId>forge-flow</artifactId>
- <groupId>com.mdframe.forge</groupId>
- <version>${revision}</version>
- </parent>
- <artifactId>forge-flow-client</artifactId>
- <name>forge-flow-client</name>
- <description>Forge Flow 客户端 - 供其他服务调用流程服务</description>
- <dependencies>
- <dependency>
- <groupId>com.mdframe.forge</groupId>
- <artifactId>forge-starter-job</artifactId>
- </dependency>
- <dependency>
- <groupId>com.mdframe.forge</groupId>
- <artifactId>forge-starter-outbound</artifactId>
- </dependency>
- <!-- Lombok -->
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <scope>provided</scope>
- </dependency>
- <!-- Jackson for JSON -->
- <dependency>
- <groupId>com.fasterxml.jackson.core</groupId>
- <artifactId>jackson-databind</artifactId>
- </dependency>
- <!-- Jackson JSR310(LocalDateTime 序列化支持) -->
- <dependency>
- <groupId>com.fasterxml.jackson.datatype</groupId>
- <artifactId>jackson-datatype-jsr310</artifactId>
- </dependency>
- <!-- Spring Web (for RestTemplate) -->
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-web</artifactId>
- </dependency>
- <!-- Spring Boot AutoConfigure(自动配置支持) -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-autoconfigure</artifactId>
- <optional>true</optional>
- </dependency>
- <!-- Spring Boot Configuration Processor(IDE 配置提示) -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-configuration-processor</artifactId>
- <optional>true</optional>
- </dependency>
- <!-- AspectJ(@FlowStart 切面支持) -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-aop</artifactId>
- <optional>true</optional>
- </dependency>
- <!-- Redis(@FlowCallback 订阅支持,可选) -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-data-redis</artifactId>
- <optional>true</optional>
- </dependency>
- <!-- Tenant context for async flow callbacks -->
- <dependency>
- <groupId>com.mdframe.forge</groupId>
- <artifactId>forge-starter-tenant</artifactId>
- </dependency>
-
- <dependency>
- <groupId>jakarta.servlet</groupId>
- <artifactId>jakarta.servlet-api</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- <scope>test</scope>
- </dependency>
- </dependencies>
- </project>
|