| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- <?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-server</artifactId>
- <name>forge-flow-server</name>
- <description>Forge Flow 流程服务 - 基于 Flowable 的独立流程服务</description>
- <dependencies>
- <!-- MySQL驱动 -->
- <dependency>
- <groupId>com.mysql</groupId>
- <artifactId>mysql-connector-j</artifactId>
- </dependency>
- <!-- Forge Flow Plugin (核心业务逻辑) -->
- <dependency>
- <groupId>com.mdframe.forge</groupId>
- <artifactId>forge-plugin-flow</artifactId>
- <exclusions>
- <exclusion>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-security</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <!-- Generator business flow services reference FlowClient; optional deps are not transitive. -->
- <dependency>
- <groupId>com.mdframe.forge</groupId>
- <artifactId>forge-flow-client</artifactId>
- </dependency>
- <!-- Forge ORM Starter (MyBatis Plus) -->
- <dependency>
- <groupId>com.mdframe.forge</groupId>
- <artifactId>forge-starter-orm</artifactId>
- </dependency>
- <!-- Forge Tenant Starter (多租户) -->
- <dependency>
- <groupId>com.mdframe.forge</groupId>
- <artifactId>forge-starter-tenant</artifactId>
- </dependency>
- <!-- Forge Web Starter -->
- <dependency>
- <groupId>com.mdframe.forge</groupId>
- <artifactId>forge-starter-web</artifactId>
- </dependency>
- <!-- Forge Auth Starter (认证授权) -->
- <dependency>
- <groupId>com.mdframe.forge</groupId>
- <artifactId>forge-starter-auth</artifactId>
- </dependency>
- <!-- Forge ID Starter -->
- <dependency>
- <groupId>com.mdframe.forge</groupId>
- <artifactId>forge-starter-id</artifactId>
- </dependency>
- <!-- Forge AI Plugin (Agent、对话、流式生成能力) -->
- <dependency>
- <groupId>com.mdframe.forge</groupId>
- <artifactId>forge-plugin-ai</artifactId>
- </dependency>
- <!-- 低代码业务对象落表适配(流程入口 BUSINESS_OBJECT/HYBRID 模式) -->
- <dependency>
- <groupId>com.mdframe.forge</groupId>
- <artifactId>forge-plugin-generator</artifactId>
- </dependency>
- <!-- 企业协同插件(COLLABORATION 消息渠道,待办企微卡片推送依赖本进程内渠道 Bean) -->
- <dependency>
- <groupId>com.mdframe.forge</groupId>
- <artifactId>forge-plugin-collaboration</artifactId>
- </dependency>
- <!-- Spring Data Redis (Pub/Sub 事件发布) -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-data-redis</artifactId>
- </dependency>
- <!-- Lombok -->
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- <scope>test</scope>
- </dependency>
- </dependencies>
- <build>
- <finalName>${project.artifactId}</finalName>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <version>${spring-boot.version}</version>
- <executions>
- <execution>
- <goals>
- <goal>repackage</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </project>
|