通用功能父模块
只需要配置管理子模块即可
<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>
<parent>
<groupId>com.shareprog</groupId>
<artifactId>shareprog-pom</artifactId>
<version>1.0.0</version>
</parent>
<artifactId>shareprog-common</artifactId>
<packaging>pom</packaging>
<name>通用模块</name>
<description>通用模块</description>
<modules>
<module>shareprog-common-log</module>
<module>shareprog-common-core</module>
<module>shareprog-common-feign</module>
<module>shareprog-common-redis</module>
<module>shareprog-common-datasource</module>
</modules>
</project>