2018-07-13 10:42:48 +08:00
|
|
|
|
<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
|
<parent>
|
|
|
|
|
<artifactId>piflow-project</artifactId>
|
|
|
|
|
<groupId>piflow</groupId>
|
|
|
|
|
<version>0.9</version>
|
|
|
|
|
</parent>
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2018-10-16 14:30:54 +08:00
|
|
|
|
<properties>
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
<jetty.version>9.0.0.M0</jetty.version>
|
|
|
|
|
<spark.version>2.1.0</spark.version>
|
|
|
|
|
<scala.version>2.11.8</scala.version>
|
|
|
|
|
<java.version>1.8</java.version>
|
|
|
|
|
</properties>
|
2018-07-13 10:42:48 +08:00
|
|
|
|
<artifactId>piflow-bundle</artifactId>
|
2018-10-16 14:30:54 +08:00
|
|
|
|
|
2018-07-13 10:42:48 +08:00
|
|
|
|
<dependencies>
|
2018-10-12 21:47:51 +08:00
|
|
|
|
|
2019-04-15 15:23:52 +08:00
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.mongodb.spark/mongo-spark-connector -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.mongodb.spark</groupId>
|
|
|
|
|
<artifactId>mongo-spark-connector_2.11</artifactId>
|
|
|
|
|
<version>${spark.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2019-03-11 10:47:58 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.neo4j.driver</groupId>
|
|
|
|
|
<artifactId>neo4j-java-driver</artifactId>
|
|
|
|
|
<version>1.7.2</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
|
|
<version>5.1.38</version>
|
|
|
|
|
<type>jar</type>
|
|
|
|
|
</dependency>
|
2019-01-10 10:25:12 +08:00
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.biojava</groupId>
|
|
|
|
|
<artifactId>biojava-structure</artifactId>
|
|
|
|
|
<version>4.0.0</version>
|
|
|
|
|
</dependency>
|
2018-11-13 12:35:52 +08:00
|
|
|
|
<!--
|
|
|
|
|
https://mvnrepository.com/artifact/org.apache.hive/hive-jdbc
|
|
|
|
|
-->
|
|
|
|
|
<dependency><groupId>org.apache.hive</groupId>
|
|
|
|
|
<artifactId>hive-jdbc</artifactId>
|
|
|
|
|
<version>1.2.1</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2018-11-09 15:10:27 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.mongodb</groupId>
|
|
|
|
|
<artifactId>mongodb-driver</artifactId>
|
|
|
|
|
<version>3.4.1</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2018-10-12 21:47:51 +08:00
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.solr/solr-solrj -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.solr</groupId>
|
|
|
|
|
<artifactId>solr-solrj</artifactId>
|
|
|
|
|
<version>7.2.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2018-10-16 14:30:54 +08:00
|
|
|
|
<!-- https://mvnrepository.com/artifact/dom4j/dom4j -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>dom4j</groupId>
|
|
|
|
|
<artifactId>dom4j</artifactId>
|
|
|
|
|
<version>1.6.1</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2018-07-13 10:42:48 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>piflow</groupId>
|
|
|
|
|
<artifactId>piflow-core</artifactId>
|
|
|
|
|
<version>0.9</version>
|
|
|
|
|
</dependency>
|
2018-09-05 17:54:21 +08:00
|
|
|
|
|
2018-07-13 10:42:48 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.clapper</groupId>
|
|
|
|
|
<artifactId>classutil_2.11</artifactId>
|
|
|
|
|
<version>1.3.0</version>
|
2018-09-25 16:31:55 +08:00
|
|
|
|
</dependency>
|
2019-03-11 10:47:58 +08:00
|
|
|
|
|
2018-09-25 16:31:55 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.reflections</groupId>
|
|
|
|
|
<artifactId>reflections</artifactId>
|
2018-10-08 17:56:00 +08:00
|
|
|
|
<version>0.9.9</version>
|
2018-09-25 16:31:55 +08:00
|
|
|
|
</dependency>
|
2019-03-11 10:47:58 +08:00
|
|
|
|
|
2018-09-25 16:31:55 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.chuusai</groupId>
|
|
|
|
|
<artifactId>shapeless_2.11</artifactId>
|
|
|
|
|
<version>2.3.1</version>
|
2018-07-13 10:42:48 +08:00
|
|
|
|
</dependency>
|
2019-03-11 10:47:58 +08:00
|
|
|
|
|
2018-07-16 17:18:40 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.sksamuel.scrimage</groupId>
|
|
|
|
|
<artifactId>scrimage-core_2.11</artifactId>
|
|
|
|
|
<version>2.1.0</version>
|
|
|
|
|
</dependency>
|
2019-03-11 10:47:58 +08:00
|
|
|
|
|
2018-07-16 17:18:40 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.sksamuel.scrimage</groupId>
|
|
|
|
|
<artifactId>scrimage-io-extra_2.11</artifactId>
|
|
|
|
|
<version>2.1.0</version>
|
|
|
|
|
</dependency>
|
2019-03-11 10:47:58 +08:00
|
|
|
|
|
2018-07-16 17:18:40 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.sksamuel.scrimage</groupId>
|
|
|
|
|
<artifactId>scrimage-filters_2.11</artifactId>
|
|
|
|
|
<version>2.1.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
|
<version>1.7.25</version>
|
|
|
|
|
</dependency>
|
2018-07-13 10:42:48 +08:00
|
|
|
|
|
2018-09-05 17:54:21 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.liftweb</groupId>
|
|
|
|
|
<artifactId>lift-json_2.11</artifactId>
|
|
|
|
|
<version>2.6.1</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2018-09-06 17:09:35 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.databricks</groupId>
|
|
|
|
|
<artifactId>spark-xml_2.11</artifactId>
|
2018-10-16 14:30:54 +08:00
|
|
|
|
<version>0.4.1</version>
|
2018-09-06 17:09:35 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
2018-10-12 21:47:51 +08:00
|
|
|
|
|
2018-09-28 13:24:32 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>redis.clients</groupId>
|
|
|
|
|
<artifactId>jedis</artifactId>
|
|
|
|
|
<version>2.9.0</version>
|
|
|
|
|
<type>jar</type>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.kafka</groupId>
|
|
|
|
|
<artifactId>kafka-clients</artifactId>
|
|
|
|
|
<version>0.11.0.0</version>
|
|
|
|
|
</dependency>
|
2019-03-11 10:47:58 +08:00
|
|
|
|
|
2018-10-16 09:45:06 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.elasticsearch</groupId>
|
2018-10-31 10:40:11 +08:00
|
|
|
|
<artifactId>elasticsearch-hadoop</artifactId>
|
|
|
|
|
<version>6.4.2</version>
|
2018-10-16 09:45:06 +08:00
|
|
|
|
</dependency>
|
2019-03-11 10:47:58 +08:00
|
|
|
|
|
2018-11-01 16:33:16 +08:00
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.elasticsearch/elasticsearch -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.elasticsearch</groupId>
|
|
|
|
|
<artifactId>elasticsearch</artifactId>
|
|
|
|
|
<version>5.6.3</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
2018-10-17 11:07:22 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.spark</groupId>
|
|
|
|
|
<artifactId>spark-mllib_2.11</artifactId>
|
2018-11-30 17:07:19 +08:00
|
|
|
|
<version>${spark.version}</version>
|
2018-10-17 11:07:22 +08:00
|
|
|
|
</dependency>
|
2018-09-28 13:24:32 +08:00
|
|
|
|
|
|
|
|
|
|
2018-10-31 16:08:03 +08:00
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.jsoup/jsoup -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.jsoup</groupId>
|
|
|
|
|
<artifactId>jsoup</artifactId>
|
|
|
|
|
<version>1.10.3</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.json</groupId>
|
|
|
|
|
<artifactId>json</artifactId>
|
|
|
|
|
<version>20151123</version>
|
|
|
|
|
</dependency>
|
2019-03-11 10:47:58 +08:00
|
|
|
|
|
2018-10-31 16:08:03 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.biojava</groupId>
|
|
|
|
|
<artifactId>core</artifactId>
|
|
|
|
|
<version>1.9.1</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2018-11-12 15:26:07 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.memcached</groupId>
|
|
|
|
|
<artifactId>java_memcached-release</artifactId>
|
|
|
|
|
<version>2.6.6</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2018-11-15 10:13:49 +08:00
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>jdbc_oracle</groupId>
|
|
|
|
|
<artifactId>ojdbc</artifactId>
|
|
|
|
|
<version>6.0.0</version>
|
|
|
|
|
</dependency>
|
2018-12-11 10:52:34 +08:00
|
|
|
|
|
2018-11-15 10:13:49 +08:00
|
|
|
|
|
2019-03-11 10:47:58 +08:00
|
|
|
|
<!--https://mvnrepository.com/artifact/org.apache.flume/flume-ng-core-->
|
2018-11-19 16:13:06 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.flume</groupId>
|
|
|
|
|
<artifactId>flume-ng-core</artifactId>
|
|
|
|
|
<version>1.8.0</version>
|
2019-03-11 10:47:58 +08:00
|
|
|
|
</dependency>
|
2018-11-15 10:13:49 +08:00
|
|
|
|
|
2018-11-13 12:12:47 +08:00
|
|
|
|
<!--https://mvnrepository.com/artifact/io.netty/netty-all-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
|
<artifactId>netty-all</artifactId>
|
|
|
|
|
<version>4.0.42.Final</version>
|
|
|
|
|
</dependency>
|
2019-03-11 10:47:58 +08:00
|
|
|
|
|
2018-11-12 18:11:11 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.hbase</groupId>
|
|
|
|
|
<artifactId>hbase-client</artifactId>
|
|
|
|
|
<version>1.2.6</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.hbase</groupId>
|
|
|
|
|
<artifactId>hbase-server</artifactId>
|
|
|
|
|
<version>1.2.6</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2018-11-22 14:09:43 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.sourceforge.jexcelapi</groupId>
|
|
|
|
|
<artifactId>jxl</artifactId>
|
|
|
|
|
<version>2.6.12</version>
|
|
|
|
|
</dependency>
|
2018-11-12 18:11:11 +08:00
|
|
|
|
|
2018-11-22 14:09:43 +08:00
|
|
|
|
<!-- Poi(解析Excle表格用) -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
|
|
<artifactId>poi-ooxml</artifactId>
|
|
|
|
|
<version>3.11-beta1</version>
|
|
|
|
|
</dependency>
|
2018-11-12 18:11:11 +08:00
|
|
|
|
|
2018-11-22 14:09:43 +08:00
|
|
|
|
<!-- Json(组装Json用)-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.sf.json-lib</groupId>
|
|
|
|
|
<artifactId>json-lib</artifactId>
|
|
|
|
|
<version>2.4</version>
|
|
|
|
|
<classifier>jdk15</classifier>
|
|
|
|
|
</dependency>
|
2018-11-19 16:13:06 +08:00
|
|
|
|
|
2018-11-28 15:34:16 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
<artifactId>commons-pool2</artifactId>
|
|
|
|
|
<version>2.4.2</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2019-02-25 10:57:59 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>ftpClient</groupId>
|
|
|
|
|
<artifactId>edtftp</artifactId>
|
|
|
|
|
<version>1.0.0</version>
|
|
|
|
|
</dependency>
|
2018-11-19 16:13:06 +08:00
|
|
|
|
|
2019-03-29 11:29:53 +08:00
|
|
|
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/com.huaban/jieba-analysis -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.huaban</groupId>
|
|
|
|
|
<artifactId>jieba-analysis</artifactId>
|
|
|
|
|
<version>1.0.2</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/commons-httpclient/commons-httpclient -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
|
<artifactId>httpclient</artifactId>
|
|
|
|
|
<version>4.5.3</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
|
<artifactId>httpmime</artifactId>
|
|
|
|
|
<version>4.5.3</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2018-07-13 10:42:48 +08:00
|
|
|
|
</dependencies>
|
|
|
|
|
|
2018-09-05 17:54:21 +08:00
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
2018-11-01 16:33:16 +08:00
|
|
|
|
|
2018-11-12 14:42:50 +08:00
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-install-plugin</artifactId>
|
|
|
|
|
<version>2.5.2</version>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>install-external-1</id>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>install-file</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<phase>install</phase>
|
|
|
|
|
<configuration>
|
2018-11-12 15:26:07 +08:00
|
|
|
|
<file>${basedir}/lib/java_memcached-release_2.6.6.jar</file>
|
2018-11-12 14:42:50 +08:00
|
|
|
|
<groupId>com.memcached</groupId>
|
2018-11-12 15:26:07 +08:00
|
|
|
|
<artifactId>java_memcached-release</artifactId>
|
|
|
|
|
<version>2.6.6</version>
|
2018-11-12 14:42:50 +08:00
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
<generatePom>true</generatePom>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
2018-11-15 10:13:49 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<execution>
|
|
|
|
|
<id>install-external-2</id>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>install-file</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<phase>install</phase>
|
|
|
|
|
<configuration>
|
|
|
|
|
<file>${basedir}/lib/ojdbc6.jar</file>
|
|
|
|
|
<groupId>jdbc_oracle</groupId>
|
|
|
|
|
<artifactId>ojdbc</artifactId>
|
|
|
|
|
<version>6.0.0</version>
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
<generatePom>true</generatePom>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
|
|
|
|
|
<execution>
|
2018-11-20 16:46:47 +08:00
|
|
|
|
<id>install-external-3</id>
|
2018-11-15 10:13:49 +08:00
|
|
|
|
<goals>
|
|
|
|
|
<goal>install-file</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<phase>install</phase>
|
|
|
|
|
<configuration>
|
|
|
|
|
<file>${basedir}/lib/ojdbc5.jar</file>
|
|
|
|
|
<groupId>jdbc_oracle</groupId>
|
|
|
|
|
<artifactId>ojdbc</artifactId>
|
|
|
|
|
<version>5.0.0</version>
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
<generatePom>true</generatePom>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
|
2019-02-25 10:57:59 +08:00
|
|
|
|
<execution>
|
2019-02-28 11:00:21 +08:00
|
|
|
|
<id>install-external-4</id>
|
2019-02-25 10:57:59 +08:00
|
|
|
|
<goals>
|
|
|
|
|
<goal>install-file</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<phase>install</phase>
|
|
|
|
|
<configuration>
|
|
|
|
|
<file>${basedir}/lib/edtftpj.jar</file>
|
|
|
|
|
<groupId>ftpClient</groupId>
|
|
|
|
|
<artifactId>edtftp</artifactId>
|
|
|
|
|
<version>1.0.0</version>
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
<generatePom>true</generatePom>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
|
2018-11-15 10:13:49 +08:00
|
|
|
|
|
2018-11-12 14:42:50 +08:00
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
|
2018-09-05 17:54:21 +08:00
|
|
|
|
<plugin>
|
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
|
<version>1.5</version>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<phase>package</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>shade</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<configuration>
|
|
|
|
|
<filters>
|
|
|
|
|
<filter>
|
|
|
|
|
<artifact>*:*</artifact>
|
|
|
|
|
<excludes>
|
|
|
|
|
<exclude>META-INF/*.SF</exclude>
|
|
|
|
|
<exclude>META-INF/*.DSA</exclude>
|
|
|
|
|
<exclude>META-INF/*.RSA</exclude>
|
|
|
|
|
</excludes>
|
|
|
|
|
</filter>
|
|
|
|
|
</filters>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2018-11-06 13:55:28 +08:00
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-install-plugin</artifactId>
|
|
|
|
|
<version>2.5.2</version>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>install-databricks</id>
|
|
|
|
|
<goals><goal>install-file</goal></goals>
|
|
|
|
|
<phase>clean</phase>
|
|
|
|
|
<configuration>
|
|
|
|
|
<file>${basedir}/lib/spark-xml_2.11-0.4.2.jar</file>
|
|
|
|
|
<groupId>com.databricks</groupId>
|
|
|
|
|
<artifactId>spark-xml_2.11</artifactId>
|
|
|
|
|
<version>0.4.1</version>
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
<generatePom>true</generatePom>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2018-09-05 17:54:21 +08:00
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
|
2018-07-13 10:42:48 +08:00
|
|
|
|
</project>
|