<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-cache</artifactId>
  <name>framework-cache</name>
  <description>缓存框架</description>
  <packaging>pom</packaging>
  <modules>
  	<module>framework-cache-core</module>
  	<module>framework-cache-redis</module>
  	<module>framework-cache-simple</module>
  </modules>

  <profiles>
  	<profile>
  		<id>with-demo</id>
  		<modules>
  			<module>framework-cache-demo</module>
  		</modules>
  	</profile>
  </profiles>
</project>