| | |
| | | <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> |
| | |
| | | <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> |
| | | </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> |
| | |
| | | |
| | | <!-- 系统模块--> |
| | | <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> |
| | |
| | | <module>common</module> |
| | | <module>system</module> |
| | | <module>business</module> |
| | | <module>flowable</module> |
| | | </modules> |
| | | <packaging>pom</packaging> |
| | | |