Skip to content

Commit 15a6edf

Browse files
authored
Merge pull request #17 from data-integrations/feature_release/CDAP-14442-remove-format-dependencies
CDAP-14442 remove avro and parquet dependencies
2 parents 6be7c0d + 9a42de1 commit 15a6edf

File tree

1 file changed

+12
-34
lines changed

1 file changed

+12
-34
lines changed

pom.xml

Lines changed: 12 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
<properties>
6060
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
6161
<cdap.version>5.1.0</cdap.version>
62-
<hydrator.version>2.1.0</hydrator.version>
62+
<hydrator.version>2.1.1-SNAPSHOT</hydrator.version>
6363
<data.pipeline.parent>system:cdap-data-pipeline[5.1.0,6.0.0-SNAPSHOT)</data.pipeline.parent>
6464
<data.stream.parent>system:cdap-data-streams[5.1.0,6.0.0-SNAPSHOT)</data.stream.parent>
6565
<hadoop.version>2.8.0</hadoop.version>
@@ -77,6 +77,16 @@
7777
<groupId>co.cask.cdap</groupId>
7878
<artifactId>cdap-formats</artifactId>
7979
<version>${cdap.version}</version>
80+
<exclusions>
81+
<exclusion>
82+
<groupId>org.apache.avro</groupId>
83+
<artifactId>avro</artifactId>
84+
</exclusion>
85+
<exclusion>
86+
<groupId>io.thekraken</groupId>
87+
<artifactId>grok</artifactId>
88+
</exclusion>
89+
</exclusions>
8090
</dependency>
8191
<dependency>
8292
<groupId>co.cask.cdap</groupId>
@@ -196,33 +206,6 @@
196206
</exclusion>
197207
</exclusions>
198208
</dependency>
199-
<dependency>
200-
<groupId>org.apache.avro</groupId>
201-
<artifactId>avro</artifactId>
202-
<version>1.7.7</version>
203-
</dependency>
204-
<dependency>
205-
<groupId>org.apache.parquet</groupId>
206-
<artifactId>parquet-avro</artifactId>
207-
<version>1.8.1</version>
208-
<exclusions>
209-
<exclusion>
210-
<groupId>org.apache.avro</groupId>
211-
<artifactId>avro</artifactId>
212-
</exclusion>
213-
</exclusions>
214-
</dependency>
215-
<dependency>
216-
<groupId>org.apache.avro</groupId>
217-
<artifactId>avro-mapred</artifactId>
218-
<classifier>hadoop2</classifier>
219-
<version>1.7.7</version>
220-
</dependency>
221-
<dependency>
222-
<groupId>xerces</groupId>
223-
<artifactId>xercesImpl</artifactId>
224-
<version>2.9.1</version>
225-
</dependency>
226209
</dependencies>
227210

228211
<build>
@@ -245,12 +228,7 @@
245228
<configuration>
246229
<instructions>
247230
<_exportcontents>
248-
co.cask.aws.s3.*;
249-
co.cask.hydrator.format.*;
250-
org.apache.avro.mapred.*;
251-
org.apache.avro.mapreduce;
252-
org.apache.parquet.avro.*;
253-
org.apache.parquet.hadoop.*;
231+
co.cask.aws.s3.*
254232
</_exportcontents>
255233
<Embed-Dependency>*;inline=false;scope=compile</Embed-Dependency>
256234
<Embed-Transitive>true</Embed-Transitive>

0 commit comments

Comments
 (0)