<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.iamberry</groupId>
		<artifactId>iamberry-parent</artifactId>
		<version>1.0.0</version>
	</parent>
	
	<!-- 系统公众的接口,防止系统和系统直接需要对接的接口、公众的接口 -->
	<groupId>com.iamberry</groupId>
	<artifactId>iamberry-common-interface</artifactId>
	<version>1.0.0</version>
	<!-- 依赖 -->
	<dependencies>
	
		<!-- 依赖公共的核心模块 -->
		<dependency>
			<groupId>com.iamberry</groupId>
			<artifactId>iamberry-common-core</artifactId>
			<version>1.0.0</version>
		</dependency>
		
		<!-- 依赖公共的工具类 -->
		<dependency>
			<groupId>com.iamberry</groupId>
			<artifactId>iamberry-common-tool</artifactId>
			<version>1.0.0</version>
		</dependency>
	</dependencies>
</project>