<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-producer</artifactId>
	<version>1.0.0</version>
	<name>open-platform-producer</name>
	<description>服务提供者，提供dubbo服务</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 -->
		<feign.version>10.1.0</feign.version>
		 <edas.bus.redis.version>1.0.0</edas.bus.redis.version>
		 <ccprestsmssdk.version>2.6.3</ccprestsmssdk.version>
		 <mybatis-plus-version>3.0.7.1</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>
			<!-- mybatis-plus begin -->
		<dependency>
			<groupId>com.baomidou</groupId>
			<artifactId>mybatis-plus-boot-starter</artifactId>
			<version>${mybatis-plus-version}</version>
		</dependency>
		<dependency>
			<groupId>com.baomidou</groupId>
			<artifactId>mybatis-plus-generator</artifactId>
			<version>${mybatis-plus-version}</version>
		</dependency>
		<!-- mybatis-plus end -->
	
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<scope>test</scope>
		</dependency>
		<!-- 持久层 begin -->
		<dependency>
			<groupId>mysql</groupId>
			<artifactId>mysql-connector-java</artifactId>
			<scope>runtime</scope>
		</dependency>
		<dependency>
			<groupId>com.baomidou</groupId>
			<artifactId>dynamic-datasource-spring-boot-starter</artifactId>
			<version>2.5.0</version>
		</dependency>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-test</artifactId>
			<scope>test</scope>
		</dependency>


		<dependency>
			<groupId>com.alibaba</groupId>
			<artifactId>druid-spring-boot-starter</artifactId>
			<version>1.1.10</version>
		</dependency>
		<!-- 模板引擎 -->
		<dependency>
			<groupId>org.apache.velocity</groupId>
			<artifactId>velocity-engine-core</artifactId>
			<version>2.0</version>
		</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 -->

		<dependency>
			<groupId>io.github.openfeign</groupId>
			<artifactId>feign-core</artifactId>
			<version>${feign.version}</version>
		</dependency>
		<dependency>
			<groupId>io.github.openfeign</groupId>
			<artifactId>feign-slf4j</artifactId>
			<version>${feign.version}</version>
		</dependency>
		<dependency>
			<groupId>io.github.openfeign</groupId>
			<artifactId>feign-hystrix</artifactId>
			<version>${feign.version}</version>
		</dependency>
		<dependency>
			<groupId>io.github.openfeign</groupId>
			<artifactId>feign-jackson</artifactId>
			<version>${feign.version}</version>
		</dependency>
		<dependency>
			<groupId>com.ovopark.boot.edas.bus</groupId>
			<artifactId>edas-bus-redis-api</artifactId>
			<version>${edas.bus.redis.version}</version>
				<type>jar</type>
		</dependency>
       <!-- 云通讯SDK -->
		<dependency>
		    <groupId>com.cloopen.rest.sdk</groupId>
		    <artifactId>CCPRestSmsSDK</artifactId>
		    <version>${ccprestsmssdk.version}</version>
		</dependency>
	</dependencies>


	<build>
		<plugins>
			<plugin>
				<groupId>org.springframework.boot</groupId>
				<artifactId>spring-boot-maven-plugin</artifactId>
				<configuration>
					<maimClass>com.ovopark.boot.ProducerStartupApplication</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>