<?xml version="1.0" encoding="UTF-8"?>
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
	<modelVersion>4.0.0</modelVersion>
	<parent>
		<groupId>com.ovopark</groupId>
		<artifactId>shopweb-ipos</artifactId>
		<version>1.0</version>
	</parent>
	<groupId>com.ovopark</groupId>
	<artifactId>shopweb-ipos-consumer</artifactId>
	<version>1.0</version>
	<name>shopweb-ipos-consumer</name>
	<description>pos消费者</description>
	<repositories>
		<!--阿里云仓库 -->
		<repository>
			<id>aliyun</id>
			<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
		</repository>
		<!--快照版本使用,正式版本无需添加此仓库 -->
		<repository>
			<id>snapshots</id>
			<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
		</repository>
		<repository>
			<id>nexus</id>
			<url>http://116.62.59.245:8081/nexus/content/groups/public/</url>
		</repository>
		<repository>
			<id>nexus-releases</id>
			<url>http://116.62.59.245:8081/nexus/content/repositories/releases/</url>
		</repository>
		<repository>
			<id>nexus-snapshots</id>
			<url>http://116.62.59.245:8081/nexus/content/repositories/snapshots/</url>
		</repository>

	</repositories>
	<!-- 插件地址 -->
	<pluginRepositories>
		<pluginRepository>
			<id>nexus</id>
			<name>Team Nexus Repository</name>
			<url>http://116.62.59.245:8081/nexus/content/groups/public/</url>
		</pluginRepository>
	</pluginRepositories>
	<distributionManagement>
		<repository>
			<id>nexus-releases</id>
			<url>http://116.62.59.245:8081/nexus/content/repositories/releases/</url>
		</repository>
		<snapshotRepository>
			<id>nexus-snapshots</id>
			<url>http://116.62.59.245:8081/nexus/content/repositories/snapshots/</url>
		</snapshotRepository>
	</distributionManagement>
	<properties>
		<java.version>1.8</java.version>
		<okhttp3.version>4.9.3</okhttp3.version>
	</properties>

	<dependencies>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter</artifactId>
		</dependency>

		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-test</artifactId>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>mysql</groupId>
			<artifactId>mysql-connector-java</artifactId>
		</dependency>

		<dependency>
			<groupId>com.baomidou</groupId>
			<artifactId>mybatis-plus-generator</artifactId>
			<version>3.3.2</version>
		</dependency>

		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-freemarker</artifactId>
		</dependency>

		<dependency>
			<groupId>com.baomidou</groupId>
			<artifactId>mybatis-plus-boot-starter</artifactId>
			<version>3.3.2</version>
		</dependency>

		<dependency>
			<groupId>com.alibaba</groupId>
			<artifactId>druid-spring-boot-starter</artifactId>
			<version>1.1.10</version>
		</dependency>
		<dependency>
			<groupId>com.ovopark</groupId>
			<artifactId>shopweb-core-sdk</artifactId>
			<version>1.0</version>
		</dependency>
		<dependency>
			<groupId>commons-httpclient</groupId>
			<artifactId>commons-httpclient</artifactId>
			<version>3.0</version>
		</dependency>
		<dependency>
			<groupId>org.apache.httpcomponents</groupId>
			<artifactId>httpclient</artifactId>
			<version>4.4</version>
		</dependency>
		<dependency>
			<groupId>org.springframework.cloud</groupId>
			<artifactId>spring-cloud-starter-openfeign</artifactId>
		</dependency>
		<dependency>
			<groupId>com.ovopark</groupId>
			<artifactId>component-message-common</artifactId>
			<version>1.0</version>
			<scope>compile</scope>
		</dependency>
		<dependency>
			<groupId>com.ovopark</groupId>
			<artifactId>component-message-sdk</artifactId>
			<version>1.0</version>
			<scope>compile</scope>
		</dependency>
		<dependency>
			<groupId>com.ovopark</groupId>
			<artifactId>shopweb-core-sdk</artifactId>
			<version>1.0</version>
		</dependency>

		<!-- <dependency> -->
		<!-- <groupId>org.springframework.cloud</groupId> -->
		<!-- <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId> -->
		<!-- <exclusions> -->
		<!-- <exclusion> -->
		<!-- <artifactId>xstream</artifactId> -->
		<!-- <groupId>com.thoughtworks.xstream</groupId> -->
		<!-- </exclusion> -->
		<!-- </exclusions> -->
		<!-- </dependency> -->


		<dependency>
			<groupId>com.thoughtworks.xstream</groupId>
			<artifactId>xstream</artifactId>
			<version>1.4.19</version>
		</dependency>

		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-web</artifactId>
		</dependency>
		<dependency>
			<groupId>com.ovopark</groupId>
			<artifactId>shopweb-ipos-common</artifactId>
		</dependency>

		<dependency>
			<groupId>org.springframework.kafka</groupId>
			<artifactId>spring-kafka</artifactId>
		</dependency>

		<dependency>
			<groupId>com.caucho</groupId>
			<artifactId>hessian</artifactId>
			<version>4.0.37</version>
		</dependency>

		<dependency>
			<groupId>com.ovopark.shopweb.api</groupId>
			<artifactId>shopweb-api</artifactId>
			<version>1.0-SNAPSHOT</version>
			<scope>compile</scope>
		</dependency>
		<dependency>
			<groupId>com.ovopark</groupId>
			<artifactId>av2png-1.1.2-jar-with-dependencies</artifactId>
			<version>1.1.2</version>
			<classifier>dependencies</classifier>
		</dependency>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-test</artifactId>
			<scope>test</scope>
		</dependency>

		<dependency>
			<groupId>com.ovopark.dc</groupId>
			<artifactId>log-kafka-producer-sdk</artifactId>
			<version>1.1.0-SNAPSHOT</version>
		</dependency>
		<dependency>
			<groupId>javax.servlet</groupId>
			<artifactId>javax.servlet-api</artifactId>
			<version>4.0.1</version>
		</dependency>

		<!-- <dependency> -->
		<!-- <groupId>com.ovopark</groupId> -->
		<!-- <artifactId>edas-plus-starter</artifactId> -->
		<!-- <version>0.0.1-SNAPSHOT</version> -->
		<!-- </dependency> -->

		<!-- spring cloud alibaba dependency -->
		<dependency>
			<groupId>com.alibaba.cloud</groupId>
			<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
			<version>2.0.4.RELEASE</version>
		</dependency>
		<dependency>
			<groupId>com.ovopark</groupId>
			<artifactId>shopweb-organize-sdk</artifactId>
			<version>1.0-SNAPSHOT</version>
		</dependency>
		<dependency>
			<groupId>com.ovopark</groupId>
			<artifactId>shopweb-organize-common</artifactId>
			<version>1.0-SNAPSHOT</version>
		</dependency>
		<dependency>
			<groupId>com.ovopark</groupId>
			<artifactId>component-message-common</artifactId>
			<version>1.0</version>
		</dependency>
		<dependency>
			<groupId>com.ovopark</groupId>
			<artifactId>component-message-sdk</artifactId>
			<version>1.0</version>
		</dependency>
		<dependency>
			<groupId>com.ovopark.dc</groupId>
			<artifactId>dc-tea-core</artifactId>
			<version>1.0.5</version>
		</dependency>

		<dependency>
			<groupId>com.ovopark</groupId>
			<artifactId>ovopark-privilege-sdk</artifactId>
			<version>1.0-SNAPSHOT</version>
		</dependency>
		<dependency>
			<groupId>com.ovopark</groupId>
			<artifactId>ovopark-device-cloud-api</artifactId>
			<version>1.0.9-SNAPSHOT</version>
		</dependency>

		<dependency>
			<groupId>com.ovopark</groupId>
			<artifactId>messagehub-sdk</artifactId>
			<version>1.0-SNAPSHOT</version>
		</dependency>

        <dependency>
    	  <groupId>junit</groupId>
      	  <artifactId>junit</artifactId>
          <scope>test</scope>
    	</dependency>
    			<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-test</artifactId>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId> org.junit.jupiter</groupId>
			<artifactId>junit-jupiter-engine</artifactId>
			<scope>test</scope>
		</dependency>
	<dependency>
			<groupId>com.ovopark.dc</groupId>
			<artifactId>dc-tea-spring-starter</artifactId>
			<version>1.0.5</version>
	</dependency>
	
			<!-- https://mvnrepository.com/artifact/com.alibaba/easyexcel -->
		<dependency>
			<groupId>com.alibaba</groupId>
			<artifactId>easyexcel</artifactId>
			<version>3.0.5</version>
<!-- 			<exclusions> -->
<!--                 <exclusion> -->
<!--                     <artifactId>commons-beanutils</artifactId> -->
<!--                     <groupId>commons-beanutils</groupId> -->
<!--                 </exclusion> -->
<!--                 <exclusion> -->
<!--                     <artifactId>poi</artifactId> -->
<!--                     <groupId>org.apache.poi</groupId> -->
<!--                 </exclusion> -->
<!--                 <exclusion> -->
<!--                     <artifactId>poi-ooxml</artifactId> -->
<!--                     <groupId>org.apache.poi</groupId> -->
<!--                 </exclusion> -->
<!--                 <exclusion> -->
<!--                     <artifactId>poi-ooxml-schemas</artifactId> -->
<!--                     <groupId>org.apache.poi</groupId> -->
<!--                 </exclusion> -->
<!--                 <exclusion> -->
<!--                     <artifactId>asm</artifactId> -->
<!--                     <groupId>org.ow2.asm</groupId> -->
<!--                 </exclusion> -->
<!--                 <exclusion> -->
<!--                     <artifactId>jackson-annotations</artifactId> -->
<!--                     <groupId>com.fasterxml.jackson.core</groupId> -->
<!--                 </exclusion> -->
<!--             </exclusions> -->
		</dependency>
	
	
	</dependencies>

	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-surefire-plugin</artifactId>
				<configuration>
					<skipTests>true</skipTests>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.springframework.boot</groupId>
				<artifactId>spring-boot-maven-plugin</artifactId>
			</plugin>
		</plugins>
	</build>

</project>
