<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.hbasesoft.framework</groupId>
		<artifactId>framework</artifactId>
		<version>4.3.1</version>
	</parent>
	<artifactId>framework-db</artifactId>
	<name>framework-db</name>
	<description>数据库访问框架模块</description>
	<packaging>pom</packaging>
	<modules>
		<module>framework-db-core</module>
		<module>framework-db-jpa</module>
		<module>framework-db-jdbc</module>
		<module>framework-db-cg</module>
		<module>framework-db-orm</module>
		<module>framework-db-mongo</module>
	</modules>

	<profiles>
		<profile>
			<id>with-demo</id>
			<modules>
				<module>framework-db-demo-mysql</module>
				<module>framework-db-demo-mongo</module>
			</modules>
		</profile>
	</profiles>
</project>