<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.edas</groupId>
    <artifactId>open-platform</artifactId>
    <version>0.0.1-SNAPSHOT</version>
  </parent>
  <artifactId>open-platform-consumer</artifactId>
  <version>1.0.0</version>
  <name>open-platform-consumer</name>
  <description>开放平台消费者</description>
      <properties>
        <skipTests>true</skipTests>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <maven.compiler.source>1.8</maven.compiler.source>
		<!-- open-platform start-->
		<boot.openplatform.version>1.0.0</boot.openplatform.version>
		<!-- open-platform end-->
		<!-- boot cloud start-->
		<boot.cloud.version>1.0.0</boot.cloud.version>
		<!-- boot cloud end-->
		 <data-access-sdk>1.0.0</data-access-sdk>
    </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>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-aop</artifactId>
		</dependency>
	<!-- open-platform begin -->
		<dependency>
			<groupId>com.ovopark.boot.edas</groupId>
			<artifactId>open-platform-api</artifactId>
			<version>${boot.openplatform.version}</version>
			<type>jar</type>
		</dependency>
    <!-- open-platform 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 -->	
    
        <!-- 数据权限sdk依赖 begin -->
<!--     	<dependency> -->
<!--             <groupId>com.ovopark.sdk</groupId> -->
<!--             <artifactId>data-access-sdk</artifactId> -->
<!--             <version>${data-access-sdk}</version> -->
<!--         </dependency> -->
<!--         <dependency> -->
<!-- 			<groupId>org.springframework.boot</groupId> -->
<!-- 			<artifactId>spring-boot-starter-jdbc</artifactId> -->
<!-- 		</dependency> -->
<!-- 		<dependency> -->
<!-- 			<groupId>mysql</groupId> -->
<!-- 			<artifactId>mysql-connector-java</artifactId> -->
<!-- 			<scope>runtime</scope> -->
<!-- 		</dependency> -->
<!--     	<dependency> -->
<!-- 			<groupId>com.alibaba</groupId> -->
<!-- 			<artifactId>druid-spring-boot-starter</artifactId> -->
<!-- 			<version>1.1.10</version> -->
<!-- 		</dependency> -->
	<!-- 数据权限sdk依赖  begin -->
		
    </dependencies>
    
    
	<build>
		<plugins>
			<plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <configuration>
                    <!-- 指定该Main Class为全局的唯一入口 -->
                    <mainClass>com.ovopark.boot.OpenPlatformConsumerApp</mainClass>
                </configuration>
				<executions>
					<execution>
						<goals>
							<goal>repackage</goal>
						</goals>
					</execution>
				</executions>
                
            </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>