<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.ovopark.boot</groupId>
    <artifactId>boot-cloud</artifactId>
    <version>0.0.1-SNAPSHOT</version>
  </parent>
  <artifactId>boot-cache</artifactId>
  <version>1.0.0-jackson</version>
  <name>boot-cache</name>
  <description>缓存</description>
        <!-- 仓库地址 -->
	<repositories>
		<repository>
			<id>nexus</id>
			<name>Team Nexus Repository</name>
			<url>http://116.62.59.245:8081/nexus/content/groups/public/</url>
		</repository>
	</repositories>

	<!-- 插件地址 -->
	<pluginRepositories>
		<pluginRepository>
			<id>nexus</id>
			<name>Team Nexus Repository</name>
			<url>http://116.62.59.245:8081/nexus/content/groups/public/</url>
		</pluginRepository>
	</pluginRepositories>
	<distributionManagement>
		<repository>
			<id>nexus-releases</id>
			<url>http://116.62.59.245:8081/nexus/content/repositories/releases/</url>
		</repository>
		<snapshotRepository>
			<id>nexus-snapshots</id>
			<url>http://116.62.59.245:8081/nexus/content/repositories/snapshots/</url>
		</snapshotRepository>
	</distributionManagement>
  <!-- 项目属性 -->
   <properties>
   		<skipTests>true</skipTests>  
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
            <maven.build.number>1.0.0</maven.build.number>
			<ehcache.version>2.6.11</ehcache.version>
    </properties>
    
    <dependencies>
     	 <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-core</artifactId>
        </dependency>
         <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-beans</artifactId>
        </dependency>
         <dependency>
       		 <groupId>org.springframework</groupId>
        	 <artifactId>spring-context</artifactId>
  	   </dependency>
    	<dependency>
    	  <groupId>junit</groupId>
      	  <artifactId>junit</artifactId>
          <scope>test</scope>
    	</dependency>
		<dependency>
      		<groupId>net.sf.ehcache</groupId>
    		<artifactId>ehcache-core</artifactId>
    		<version>${ehcache.version}</version>
     		<scope>compile</scope>
  		</dependency>
  		<dependency>
    		<groupId>redis.clients</groupId>
    		<artifactId>jedis</artifactId>
		</dependency>
		<dependency>
   			 <groupId>org.apache.commons</groupId>
   			 <artifactId>commons-pool2</artifactId>
   			 <scope>compile</scope>
		</dependency>
		 <!-- gson json-->
		<dependency>
   			 <groupId>com.google.code.gson</groupId>
    	 	 <artifactId>gson</artifactId>
		</dependency>
		     <dependency>
            <groupId>com.ovopark.boot</groupId>
            <artifactId>boot-kit</artifactId>
            <version>1.0.0</version>
        </dependency>
   </dependencies>
   
   
      <build>
        <finalName>cloud-cache-${maven.build.number}</finalName>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                    <showWarnings>true</showWarnings>
                </configuration>
            </plugin>
            <plugin>
                <artifactId>maven-source-plugin</artifactId>
                <configuration>
                    <attach>true</attach>
                </configuration>
                <executions>
                    <execution>
                        <phase>compile</phase>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build> 
   
   
   
</project>