<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>business-push</artifactId>
    <version>0.0.1-SNAPSHOT</version>
  </parent>
  <groupId>com.ovopark.boot.business.push</groupId>
  <artifactId>business-push-consumer</artifactId>
  <version>1.0.0</version>
  <name>business-push-consumer</name>
  <description>推送服务消费者</description>
  
   <properties>
        <skipTests>true</skipTests>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <maven.compiler.source>1.8</maven.compiler.source>
		<!-- business.push start-->
		<business.push.version>1.0.0</business.push.version>
		<!-- business.push end-->
		<!-- boot cloud start-->
		<boot.cloud.version>1.0.0</boot.cloud.version>
		<!-- boot cloud end-->
    </properties>

    <dependencies>
         <dependency>  
            <groupId>org.hibernate</groupId>  
            <artifactId>hibernate-validator</artifactId>  
            <version>5.2.1.Final</version>  
        </dependency>
        <dependency>
    	  <groupId>junit</groupId>
      	  <artifactId>junit</artifactId>
          <scope>test</scope>
    	</dependency>
     <!-- 持久层 begin -->
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-test</artifactId>
			<scope>test</scope>
		</dependency>
	<!-- business oa begin -->
		<dependency>
			<groupId>com.ovopark.boot.business.push</groupId>
			<artifactId>business-push-api</artifactId>
			<version>${business.push.version}</version>
		</dependency>
		<!-- business oa end -->
    <!-- boot cloud begin -->
		<dependency>
			<groupId>com.ovopark.boot</groupId>
			<artifactId>boot-core</artifactId>
			<version>${boot.cloud.version}</version>
			<type>jar</type>
		</dependency>
		<dependency>
			<groupId>com.ovopark.boot</groupId>
			<artifactId>boot-kit</artifactId>
			<version>${boot.cloud.version}</version>
			<type>jar</type>
		</dependency>
    <!-- boot cloud end -->	
    		<!-- open sdk -->	
    </dependencies>
    
    
	<build>
		<plugins>
			<plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
		</plugins>
	</build>
    <developers>  
		<developer>
			<id>remiel_mercy</id>
			<name>XueFei</name>
			<email>xuefei_fly@126.com</email>
			<roles><role>architect</role></roles>
		</developer>
	</developers> 
</project>