12345678910111213141516171819202122232425262728293031 |
- <?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>
- <artifactId>lowflow</artifactId>
- <groupId>com.flow</groupId>
- <version>0.0.1-SNAPSHOT</version>
- </parent>
- <modules>
- <module>flow-common-core</module>
- <module>flow-common-redis-starter</module>
- <module>flow-common-doc-starter</module>
- <module>flow-common-websocket-starter</module>
- <module>flow-common-mybatis-starter</module>
- <module>flow-common-cache-starter</module>
- <module>flow-common-oauth2-starter</module>
- <module>flow-common-flowable-starter</module>
- </modules>
- <artifactId>flow-common</artifactId>
- <name>common 公共模块</name>
- <description>公共依赖设置处理</description>
- <dependencies>
- </dependencies>
- </project>
|