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>
|
|
|
|
|
|
|
|
<artifactId>piflow-bundle</artifactId>
|
|
|
|
<dependencies>
|
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-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>
|
|
|
|
<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>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.chuusai</groupId>
|
|
|
|
<artifactId>shapeless_2.11</artifactId>
|
|
|
|
<version>2.3.1</version>
|
2018-07-13 10:42:48 +08:00
|
|
|
</dependency>
|
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>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.sksamuel.scrimage</groupId>
|
|
|
|
<artifactId>scrimage-io-extra_2.11</artifactId>
|
|
|
|
<version>2.1.0</version>
|
|
|
|
</dependency>
|
|
|
|
<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>
|
|
|
|
<version>0.4.2</version>
|
|
|
|
</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>
|
2018-10-16 09:45:06 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.elasticsearch</groupId>
|
|
|
|
<artifactId>elasticsearch-spark-20_2.11</artifactId>
|
|
|
|
<version>5.6.3</version>
|
|
|
|
</dependency>
|
2018-09-28 13:24:32 +08:00
|
|
|
|
|
|
|
|
2018-07-13 10:42:48 +08:00
|
|
|
</dependencies>
|
|
|
|
|
2018-09-05 17:54:21 +08:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<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>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2018-07-13 10:42:48 +08:00
|
|
|
</project>
|