1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?xml version="1.0" encoding="UTF-8"?>
- <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>
- <packaging>pom</packaging>
- <parent>
- <groupId>com.flow</groupId>
- <artifactId>lowflow</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </parent>
- <modules>
- <module>flow-system-entity</module>
- <module>flow-system-biz</module>
- <module>flow-system-api</module>
- <module>flow-system-controller</module>
- </modules>
- <artifactId>flow-system</artifactId>
- <name>system 系统模块</name>
- <description>系统依赖设置处理</description>
- <properties>
- <maven.compiler.source>8</maven.compiler.source>
- <maven.compiler.target>8</maven.compiler.target>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- <dependencies>
- <dependency>
- <groupId>com.flow</groupId>
- <artifactId>flow-common-core</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.flow</groupId>
- <artifactId>flow-file-biz</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.flow</groupId>
- <artifactId>flow-common-mybatis-starter</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- <!--websocket-->
- <dependency>
- <groupId>com.flow</groupId>
- <artifactId>flow-common-websocket-starter</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- </dependencies>
- </project>
|