aboutsummaryrefslogtreecommitdiff
path: root/distribution
diff options
context:
space:
mode:
authorArina Ielchiieva <arina.yelchiyeva@gmail.com>2018-07-25 20:28:45 +0300
committerTimothy Farkas <timothyfarkas@apache.org>2018-07-31 16:24:28 -0700
commit0903a1edb5531d3d28104191b35b57db3a99d5da (patch)
tree37cd5903e50b0be363e07045ec7ef66e05817cd3 /distribution
parentb77441333010b60683c78dbc4cc349b2ee6c0c53 (diff)
DRILL-6634: Add udf module under contrib directory and move some udfs into it
1. Created new contrib/udf module. 2. Moved distance, phonetic, networking, crypto functions from java-exec to contrib/udf module. 3. Moved functions from gis module to contrib/udf module. Removed gis module. 4. Removed unnecessary dependencies from java-exec module. 5. Minor refactoring of moved functions code. closes #1403
Diffstat (limited to 'distribution')
-rw-r--r--distribution/pom.xml8
-rw-r--r--distribution/src/assemble/bin.xml2
2 files changed, 5 insertions, 5 deletions
diff --git a/distribution/pom.xml b/distribution/pom.xml
index 19f41f2f4..35a274a75 100644
--- a/distribution/pom.xml
+++ b/distribution/pom.xml
@@ -266,14 +266,14 @@
<artifactId>drill-storage-hive-core</artifactId>
<version>${project.version}</version>
</dependency>
- <dependency>
+ <dependency>
<groupId>org.apache.drill.contrib</groupId>
- <artifactId>drill-gis</artifactId>
+ <artifactId>drill-storage-kafka</artifactId>
<version>${project.version}</version>
</dependency>
- <dependency>
+ <dependency>
<groupId>org.apache.drill.contrib</groupId>
- <artifactId>drill-storage-kafka</artifactId>
+ <artifactId>drill-udfs</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
diff --git a/distribution/src/assemble/bin.xml b/distribution/src/assemble/bin.xml
index 712f3ec59..1db6804ef 100644
--- a/distribution/src/assemble/bin.xml
+++ b/distribution/src/assemble/bin.xml
@@ -102,9 +102,9 @@
<include>org.apache.drill.contrib:drill-format-mapr</include>
<include>org.apache.drill.contrib:drill-jdbc-storage</include>
<include>org.apache.drill.contrib:drill-kudu-storage</include>
- <include>org.apache.drill.contrib:drill-gis</include>
<include>org.apache.drill.contrib:drill-storage-kafka</include>
<include>org.apache.drill.contrib:drill-opentsdb-storage</include>
+ <include>org.apache.drill.contrib:drill-udfs</include>
</includes>
<excludes>
<exclude>org.apache.drill.contrib.storage-hive:drill-storage-hive-core:jar:tests</exclude>