luohairen
2024-11-29 c77cab7ca85f219df136ec2aac24a22efa7837f8
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>