From 80662b34fe93b4ede00c7fc03fbd9f01355c94e2 Mon Sep 17 00:00:00 2001
From: xiangpei <xiangpei@timesnew.cn>
Date: 星期一, 07 四月 2025 13:52:17 +0800
Subject: [PATCH] 修改任务接口
---
pom.xml | 71 +++++++++++++++++++++++++++++++----
1 files changed, 62 insertions(+), 9 deletions(-)
diff --git a/pom.xml b/pom.xml
index 0ef8b8d..f555698 100644
--- a/pom.xml
+++ b/pom.xml
@@ -2,20 +2,20 @@
<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>
+ <modelVersion>4.0.0</modelVersion>
- <groupId>com.hnct</groupId>
- <artifactId>airport-screen-backend</artifactId>
+ <groupId>com.ycl</groupId>
+ <artifactId>project-management</artifactId>
<version>1.0.0</version>
- <name>airport-screen-backend</name>
+ <name>project-management</name>
<description>涓�浣撳寲鏅鸿兘瑙嗛鍒嗘瀽骞冲彴</description>
<properties>
<platform.version>1.0.0</platform.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
- <java.version>11</java.version>
+ <java.version>17</java.version>
<maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
<spring-framework.version>5.3.33</spring-framework.version>
<spring-security.version>5.7.12</spring-security.version>
@@ -30,15 +30,52 @@
<poi.version>4.1.2</poi.version>
<velocity.version>2.3</velocity.version>
<jwt.version>0.9.1</jwt.version>
- <mybatisplus.version>3.5.1</mybatisplus.version>
+ <mybatisplus.version>3.5.4.1</mybatisplus.version>
<lombok.version>1.18.24</lombok.version>
<easyEacel.version>3.3.2</easyEacel.version>
<knife.version>3.0.3</knife.version>
+ <flowable.version>6.8.1</flowable.version>
+ <flowable-other.version>6.8.1</flowable-other.version>
+ <hutool.version>5.8.31</hutool.version>
</properties>
<!-- 渚濊禆澹版槑 -->
<dependencyManagement>
<dependencies>
+
+ <!-- flowable -->
+ <dependency>
+ <groupId>org.flowable</groupId>
+ <artifactId>flowable-spring-boot-starter</artifactId>
+ <version>${flowable.version}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>org.flowable</groupId>
+ <artifactId>flowable-spring-security</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+
+ <dependency>
+ <groupId>org.flowable</groupId>
+ <artifactId>flowable-spring-boot-starter-process</artifactId>
+ <version>${flowable.version}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.flowable</groupId>
+ <artifactId>flowable-json-converter</artifactId>
+ <version>${flowable-other.version}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.flowable</groupId>
+ <artifactId>flowable-bpmn-layout</artifactId>
+ <version>${flowable-other.version}</version>
+ </dependency>
+
+
+
<!-- swagger-knife -->
<dependency>
@@ -181,25 +218,40 @@
<!-- 绯荤粺妯″潡-->
<dependency>
- <groupId>com.hnct</groupId>
+ <groupId>com.ycl</groupId>
<artifactId>business</artifactId>
<version>${platform.version}</version>
</dependency>
<!-- 绯荤粺妯″潡-->
<dependency>
- <groupId>com.hnct</groupId>
+ <groupId>com.ycl</groupId>
<artifactId>system</artifactId>
+ <version>${platform.version}</version>
+ </dependency>
+
+ <!-- 宸ヤ綔娴佹ā鍧� -->
+ <dependency>
+ <groupId>com.ycl</groupId>
+ <artifactId>flowable</artifactId>
<version>${platform.version}</version>
</dependency>
<!-- 閫氱敤宸ュ叿-->
<dependency>
- <groupId>com.hnct</groupId>
+ <groupId>com.ycl</groupId>
<artifactId>common</artifactId>
<version>${platform.version}</version>
</dependency>
+ <!-- hutool 鐨勪緷璧栭厤缃�-->
+ <dependency>
+ <groupId>cn.hutool</groupId>
+ <artifactId>hutool-bom</artifactId>
+ <version>${hutool.version}</version>
+ <type>pom</type>
+ <scope>import</scope>
+ </dependency>
</dependencies>
</dependencyManagement>
@@ -208,6 +260,7 @@
<module>common</module>
<module>system</module>
<module>business</module>
+ <module>flowable</module>
</modules>
<packaging>pom</packaging>
--
Gitblit v1.8.0