<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.business</groupId>
		<artifactId>business-base</artifactId>
		<version>0.0.1-SNAPSHOT</version>
	</parent>
	<artifactId>business-base-consumer</artifactId>
	<version>1.0.0</version>
	<name>business-base-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.base start -->
		<business.base.version>1.0.0</business.base.version>
		<!-- business.base end -->
		<!-- boot cloud start -->
		<boot.cloud.version>1.0.0</boot.cloud.version>
		<!-- boot cloud end -->
	</properties>

	<dependencies>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-web</artifactId>
		</dependency>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-jetty</artifactId>
		</dependency>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<scope>test</scope>
		</dependency>
		<!-- business.base begin -->
		<dependency>
			<groupId>com.ovopark.boot.business.base</groupId>
			<artifactId>business-base-api</artifactId>
			<version>${business.base.version}</version>
			<type>jar</type>
		</dependency>
		<!-- business.base end -->
		<!-- 持久层 begin -->
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-test</artifactId>
			<scope>test</scope>
		</dependency>
		<!-- boot cloud begin -->
		<dependency>
			<groupId>com.ovopark.boot</groupId>
			<artifactId>boot-kit</artifactId>
			<version>${boot.cloud.version}</version>
			<type>jar</type>
		</dependency>
		<!-- boot cloud end -->
		 <dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-aop</artifactId>
		</dependency>
	</dependencies>

	<build>
		<plugins>
			<plugin>
				<groupId>org.springframework.boot</groupId>
				<artifactId>spring-boot-maven-plugin</artifactId>
				 <configuration>
                    <!-- 指定该Main Class为全局的唯一入口 -->
                    <mainClass>com.ovopark.boot.app.BaseConsumerApp</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>