<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>edas-bus-message</artifactId>
		<version>0.0.1-SNAPSHOT</version>
	</parent>
	<artifactId>edas-bus-message-producer</artifactId>
	<version>1.0.0</version>
	<properties>
		<skipTests>true</skipTests>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
		<maven.compiler.source>1.8</maven.compiler.source>
		<maven.compiler.target>1.8</maven.compiler.target>
		<!-- boot cloud start -->
		<boot.cloud.version>1.0.1</boot.cloud.version>
		<!-- boot cloud end -->
		<apollo.version>1.4.0</apollo.version>
		<ccprestsmssdk.version>2.6.3</ccprestsmssdk.version>
		<mybatis-plus-version>3.1.0</mybatis-plus-version>
	</properties>
	<repositories>
		<repository>
			<id>nexus</id>
			<name>Team Nexus Repository</name>
			<url>http://116.62.59.245:8081/nexus/content/groups/public/</url>
		</repository>
	</repositories>


	<dependencies>
		<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-core</artifactId>
			<version>${boot.cloud.version}</version>
		</dependency>
		<dependency>
			<groupId>com.ovopark.boot</groupId>
			<artifactId>boot-kit</artifactId>
			<version>${boot.cloud.version}</version>
		</dependency>
		<!-- boot cloud end -->
		<dependency>
			<groupId>com.ctrip.framework.apollo</groupId>
			<artifactId>apollo-client</artifactId>
			<version>${apollo.version}</version>
		</dependency>
		<!-- 云通讯SDK -->
		<dependency>
			<groupId>com.cloopen.rest.sdk</groupId>
			<artifactId>CCPRestSmsSDK</artifactId>
			<version>${ccprestsmssdk.version}</version>
		</dependency>
		 <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>
					<maimClass>com.ovopark.boot.BusRedisProducerApp</maimClass>
				</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>