From c77cab7ca85f219df136ec2aac24a22efa7837f8 Mon Sep 17 00:00:00 2001 From: luohairen <3399054449@qq.com> Date: 星期五, 29 十一月 2024 02:38:46 +0800 Subject: [PATCH] 项目计划审批 --- pom.xml | 69 ++++++++++++++++++++++++++++++---- 1 files changed, 61 insertions(+), 8 deletions(-) diff --git a/pom.xml b/pom.xml index 0ef8b8d..11f420a 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> @@ -34,11 +34,48 @@ <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