Files
lc_backend/jeelowcode-module/jeelowcode-module-biz/pom.xml
yang chen 2daa6fc067 feat(biz): 引入状态机并调整配置超时时间
- 将SQL查询超时时间和事务超时时间从60秒延长至120秒
- 在biz模块中引入Spring Statemachine依赖,用于管理HTTP客户端的登录状态
- 清理pom.xml文件中的多余空格和格式问题
2025-12-01 11:19:45 +08:00

59 lines
2.2 KiB
XML

<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>
<groupId>com.jeelowcode</groupId>
<artifactId>jeelowcode-module</artifactId>
<version>${jeelowcode.version}</version>
</parent>
<groupId>com.jeelowcode</groupId>
<artifactId>jeelowcode-module-biz</artifactId>
<packaging>jar</packaging>
<name>${project.artifactId}</name>
<version>${jeelowcode.version}</version>
<description>个人业务模块</description>
<dependencies>
<dependency>
<groupId>com.jeelowcode</groupId>
<artifactId>jeelowcode-module-api</artifactId>
</dependency>
<dependency>
<groupId>com.jeelowcode</groupId>
<artifactId>jeelowcode-core</artifactId>
</dependency>
<dependency>
<groupId>com.jeelowcode</groupId>
<artifactId>jeelowcode-service-infra-biz</artifactId>
<version>2.0.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-engine</artifactId>
<version>6.8.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.jeelowcode</groupId>
<artifactId>jeelowcode-service-bpm-biz</artifactId>
<version>2.0.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.jeelowcode</groupId>
<artifactId>jeelowcode-service-system-biz</artifactId>
<version>2.0.1</version>
<scope>compile</scope>
</dependency>
<!-- 引入状态机 目前可以用来做一个http client 含登录状态 -->
<dependency>
<groupId>org.springframework.statemachine</groupId>
<artifactId>spring-statemachine-core</artifactId>
<version>3.0.1</version>
</dependency>
</dependencies>
</project>