<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-data-analysis</artifactId>
    <version>0.0.1-SNAPSHOT</version>
  </parent>
  <artifactId>business-data-analysis-etl</artifactId>
  <version>1.0.0</version>
  <name>business-data-analysis-etl</name>
  <description>数据挖掘</description>
  <properties>
		<skipTests>true</skipTests>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
		<maven.compiler.source>1.8</maven.compiler.source>
		<!-- boot cloud start -->
		<boot.cloud.version>1.0.0</boot.cloud.version>
		<!-- boot cloud end -->
		<feign.version>10.1.0</feign.version>
		 <mybatis-plus-version>3.0.7.1</mybatis-plus-version>
		<!-- business.data.analysis start -->
		<business.data.analysis.version>1.0.0</business.data.analysis.version>
		<!-- business.data.analysis end -->
	  <!-- business.base start -->
	  <business.base.version>1.0.0</business.base.version>
	  <!-- business.base end -->
	</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>
		<!-- business.data.analysis begin -->
		<dependency>
			<groupId>com.ovopark.boot.business.analysis</groupId>
			<artifactId>business-data-analysis-api</artifactId>
			<version>${business.data.analysis.version}</version>
			<type>jar</type>
		</dependency>
		<!-- business.data.analysis 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>


		<!-- 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>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>

		<!-- xxl-job-core -->
		<dependency>
			<groupId>com.xuxueli</groupId>
			<artifactId>xxl-job-core</artifactId>
			<version>2.0.1</version>
		</dependency>

		<!-- kettle 相关-->
		<dependency>
			<groupId>pentaho-kettle</groupId>
			<artifactId>kettle-core</artifactId>
			<version>8.2.0.0-342</version>
			<!-- 私服GG 临时引入项目中的jar包，方便Jenkins打包-->
			<scope>system</scope>
			<systemPath>${project.basedir}/src/main/resources/lib/kettle-core-8.2.0.0-342.jar</systemPath>

		</dependency>
		<dependency>
			<groupId>pentaho-kettle</groupId>
			<artifactId>kettle-engine</artifactId>
			<version>8.2.0.0-342</version>
			<scope>system</scope>
			<systemPath>${project.basedir}/src/main/resources/lib/kettle-engine-8.2.0.0-342.jar</systemPath>

		</dependency>
		<dependency>
			<groupId>pentaho-kettle</groupId>
			<artifactId>metastore</artifactId>
			<version>8.2.0.0-342</version>
			<scope>system</scope>
			<systemPath>${project.basedir}/src/main/resources/lib/metastore-8.2.0.0-342.jar</systemPath>

		</dependency>
		<dependency>
			<groupId>org.apache.commons</groupId>
			<artifactId>commons-vfs2</artifactId>
			<version>2.1</version>
		</dependency>

		<!-- https://mvnrepository.com/artifact/com.jcraft/jsch -->
		<dependency>
			<groupId>com.jcraft</groupId>
			<artifactId>jsch</artifactId>
			<version>0.1.54</version>
		</dependency>

		<dependency>
			<groupId>org.springframework.kafka</groupId>
			<artifactId>spring-kafka</artifactId>
			<!--<version>2.1.10.RELEASE</version>-->
		</dependency>

		<!--GEO解析-->
		<dependency>
			<groupId>com.maxmind.geoip2</groupId>
			<artifactId>geoip2</artifactId>
			<version>2.12.0</version>
		</dependency>

		<dependency>
			<groupId>com.ovopark.boot.edas.bus</groupId>
			<artifactId>edas-bus-redis-api</artifactId>
			<version>1.0.0</version>
			<exclusions>
				<exclusion>
					<artifactId>dubbo</artifactId>
					<groupId>com.alibaba</groupId>
				</exclusion>
				<exclusion>
					<artifactId>zookeeper</artifactId>
					<groupId>org.apache.zookeeper</groupId>
				</exclusion>
				<exclusion>
					<artifactId>log4j</artifactId>
					<groupId>log4j</groupId>
				</exclusion>
			</exclusions>
		</dependency>

		<!-- Apache Dubbo -->
		<dependency>
			<groupId>org.apache.dubbo</groupId>
			<artifactId>dubbo</artifactId>
			<version>2.7.3</version>
		</dependency>

		<dependency>
			<groupId>org.apache.curator</groupId>
			<artifactId>curator-framework</artifactId>
			<version>4.0.1</version>
		</dependency>

		<dependency>
			<groupId>org.apache.curator</groupId>
			<artifactId>curator-recipes</artifactId>
			<version>4.0.1</version>
		</dependency>

		<!-- hutool-->
		<dependency>
			<groupId>cn.hutool</groupId>
			<artifactId>hutool-all</artifactId>
			<version>5.0.6</version>
		</dependency>

	</dependencies>


   
    <build>
        <plugins>
			<plugin>
				<groupId>org.springframework.boot</groupId>
				<artifactId>spring-boot-maven-plugin</artifactId>
				<configuration>
					<!--<maimClass>com.ovopark.boot.BDAConsumerApplication</maimClass>-->
					<includeSystemScope>true</includeSystemScope>
				</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>