| 12345678910111213141516171819202122232425 |
- <?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.vap</groupId>
- <artifactId>ChickenFarm</artifactId>
- <version>${revision}</version>
- </parent>
- <packaging>pom</packaging>
- <artifactId>vb-collection-modules</artifactId>
- <name>${project.artifactId}</name>
- <description>采集业务模块</description>
- <modules>
- <module>vb-collection-core</module>
- <module>vb-collection-persistence</module>
- <module>vb-collection-job</module>
- </modules>
- </project>
|