blob: b3ab6dae389dedc2eeebb194cf8e160fda5ccc59 [file] [log] [blame]
Michael Blow786ed612017-07-20 11:19:38 -04001<!--
Ian Maxon928bbd12015-09-14 17:12:48 -07002 ! Licensed to the Apache Software Foundation (ASF) under one
3 ! or more contributor license agreements. See the NOTICE file
4 ! distributed with this work for additional information
5 ! regarding copyright ownership. The ASF licenses this file
6 ! to you under the Apache License, Version 2.0 (the
7 ! "License"); you may not use this file except in compliance
8 ! with the License. You may obtain a copy of the License at
9 !
10 ! http://www.apache.org/licenses/LICENSE-2.0
11 !
12 ! Unless required by applicable law or agreed to in writing,
13 ! software distributed under the License is distributed on an
14 ! "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 ! KIND, either express or implied. See the License for the
16 ! specific language governing permissions and limitations
17 ! under the License.
18 !-->
Vinayak Borkar9cca81b2013-12-11 21:53:45 -080019<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">
Michael Blowb4c1fb02016-05-09 15:41:00 -070020 <modelVersion>4.0.0</modelVersion>
21 <parent>
22 <artifactId>apache-asterixdb</artifactId>
23 <groupId>org.apache.asterix</groupId>
Ian Maxon25824812022-01-27 11:49:12 -080024 <version>0.9.8-SNAPSHOT</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070025 </parent>
26 <licenses>
27 <license>
28 <name>Apache License, Version 2.0</name>
29 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
30 <distribution>repo</distribution>
31 <comments>A business-friendly OSS license</comments>
32 </license>
33 </licenses>
34 <artifactId>asterix-external-data</artifactId>
35 <properties>
Michael Blow4cd925c2018-01-20 17:15:38 -050036 <root.dir>${basedir}/..</root.dir>
Michael Blow599ef8f2017-01-12 11:02:53 -050037 <generatedSourcesDirectory>${project.build.directory}/generated-sources/lexer/</generatedSourcesDirectory>
Michael Blowb4c1fb02016-05-09 15:41:00 -070038 </properties>
39 <build>
40 <plugins>
41 <plugin>
Abdullah Alamoudi486e47a2015-12-23 08:17:57 +030042 <groupId>org.apache.asterix</groupId>
Michael Blowb4c1fb02016-05-09 15:41:00 -070043 <artifactId>lexer-generator-maven-plugin</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040044 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070045 <configuration>
46 <grammarFile>src/main/resources/adm.grammar</grammarFile>
Till Westmann7255c5d2016-07-27 19:34:18 -070047 <outputDir>${project.build.directory}/generated-sources/lexer/org/apache/asterix/runtime/operators/file/adm</outputDir>
Michael Blowb4c1fb02016-05-09 15:41:00 -070048 </configuration>
49 <executions>
50 <execution>
51 <id>generate-lexer</id>
52 <phase>generate-sources</phase>
53 <goals>
54 <goal>generate-lexer</goal>
55 </goals>
56 </execution>
57 </executions>
58 </plugin>
59 <plugin>
60 <groupId>org.codehaus.mojo</groupId>
61 <artifactId>build-helper-maven-plugin</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -070062 <executions>
63 <execution>
64 <id>add-source</id>
65 <phase>generate-sources</phase>
66 <goals>
67 <goal>add-source</goal>
68 </goals>
Ian Maxon3da9d062016-03-16 17:05:31 -070069 <configuration>
Michael Blowb4c1fb02016-05-09 15:41:00 -070070 <sources>
Till Westmann7255c5d2016-07-27 19:34:18 -070071 <source>${project.build.directory}/generated-sources/lexer/</source>
Michael Blowb4c1fb02016-05-09 15:41:00 -070072 </sources>
Ian Maxon3da9d062016-03-16 17:05:31 -070073 </configuration>
Michael Blowb4c1fb02016-05-09 15:41:00 -070074 </execution>
75 </executions>
76 </plugin>
77 <plugin>
78 <groupId>org.jvnet.jaxb2.maven2</groupId>
79 <artifactId>maven-jaxb2-plugin</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -070080 <executions>
81 <execution>
82 <id>configuration</id>
83 <goals>
84 <goal>generate</goal>
85 </goals>
86 <configuration>
87 <schemaDirectory>src/main/resources/schema</schemaDirectory>
88 <schemaIncludes>
89 <include>library.xsd</include>
90 </schemaIncludes>
91 <generatePackage>org.apache.asterix.external.library</generatePackage>
92 <generateDirectory>${project.build.directory}/generated-sources/configuration</generateDirectory>
93 </configuration>
94 </execution>
95 </executions>
96 </plugin>
97 <plugin>
98 <groupId>org.apache.maven.plugins</groupId>
99 <artifactId>maven-jar-plugin</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700100 <configuration>
101 <includes>
102 <include>**/*.class</include>
103 <include>**/*.txt</include>
Ian Maxona28ddb72020-04-28 15:36:30 -0700104 <include>**/*.py</include>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700105 <include>**/NOTICE</include>
106 <include>**/LICENSE</include>
Michael Blow82464fb2017-03-28 18:48:13 -0400107 <include>**/*.properties</include>
Xikui Wangf17def92017-01-10 14:46:44 -0800108 <include>**/services/**</include>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700109 </includes>
110 </configuration>
111 <executions>
112 <execution>
113 <goals>
114 <goal>test-jar</goal>
115 </goals>
116 <phase>package</phase>
117 </execution>
118 </executions>
119 </plugin>
120 <plugin>
121 <artifactId>maven-assembly-plugin</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700122 <executions>
123 <execution>
124 <configuration>
Michael Blow82464fb2017-03-28 18:48:13 -0400125 <descriptors>src/main/assembly/binary-assembly-libzip.xml</descriptors>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700126 </configuration>
127 <phase>package</phase>
128 <goals>
Michael Blow82464fb2017-03-28 18:48:13 -0400129 <goal>single</goal>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700130 </goals>
131 </execution>
132 </executions>
133 </plugin>
Michael Blow599ef8f2017-01-12 11:02:53 -0500134 <plugin>
Michael Blow82464fb2017-03-28 18:48:13 -0400135 <groupId>org.apache.rat</groupId>
136 <artifactId>apache-rat-plugin</artifactId>
137 <configuration>
138 <licenses combine.children="append">
139 <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense">
140 <licenseFamilyCategory>Kermit</licenseFamilyCategory>
141 <licenseFamilyName>Kermit Project</licenseFamilyName>
Michael Blow07570112017-04-11 21:38:31 -0400142 <notes>The UTF-8 sample "I Can Eat Glass" from The Kermit Project (license in LICENSE file)</notes>
143 <patterns>Copyright © 1981-2011, Trustees of Columbia University in the City of New York. All rights reserved.</patterns>
Michael Blow82464fb2017-03-28 18:48:13 -0400144 </license>
145 </licenses>
146 <licenseFamilies combine.children="append">
147 <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
148 <familyName>Kermit Project</familyName>
149 </licenseFamily>
150 </licenseFamilies>
151 <excludes combine.children="append">
Michael Blow82464fb2017-03-28 18:48:13 -0400152 <exclude>src/test/resources/record.json</exclude> <!-- https://issues.apache.org/jira/browse/ASTERIXDB-1850 -->
153 <exclude>src/test/resources/change_feed.csv</exclude>
Xikui Wang46518ba2017-05-29 22:55:51 -0700154 <exclude>src/test/resources/test_tweets.txt</exclude>
Michael Blow82464fb2017-03-28 18:48:13 -0400155 </excludes>
156 </configuration>
157 </plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700158 </plugins>
159 <pluginManagement>
160 <plugins>
Wail Alkowaileetf984ced2020-10-16 12:44:42 -0700161 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
Michael Blowb4c1fb02016-05-09 15:41:00 -0700162 <plugin>
163 <groupId>org.eclipse.m2e</groupId>
164 <artifactId>lifecycle-mapping</artifactId>
165 <version>1.0.0</version>
166 <configuration>
167 <lifecycleMappingMetadata>
168 <pluginExecutions>
169 <pluginExecution>
170 <pluginExecutionFilter>
Abdullah Alamoudifba622b2016-05-14 13:01:16 -0700171 <groupId> org.apache.asterix</groupId>
172 <artifactId> lexer-generator-maven-plugin</artifactId>
Michael Blow09f958c2017-08-20 17:02:19 -0400173 <versionRange>[0.0,)</versionRange>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700174 <goals>
175 <goal>generate-lexer</goal>
176 </goals>
177 </pluginExecutionFilter>
178 <action>
179 <execute>
180 <runOnIncremental>false</runOnIncremental>
181 </execute>
182 </action>
183 </pluginExecution>
184 <pluginExecution>
185 <pluginExecutionFilter>
Abdullah Alamoudifba622b2016-05-14 13:01:16 -0700186 <groupId> org.codehaus.mojo</groupId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700187 <artifactId>build-helper-maven-plugin</artifactId>
Michael Blow09f958c2017-08-20 17:02:19 -0400188 <versionRange>[0.0,)</versionRange>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700189 <goals>
190 <goal>add-source</goal>
191 </goals>
192 </pluginExecutionFilter>
193 <action>
Abdullah Alamoudifba622b2016-05-14 13:01:16 -0700194 <ignore />
Michael Blowb4c1fb02016-05-09 15:41:00 -0700195 </action>
196 </pluginExecution>
197 </pluginExecutions>
198 </lifecycleMappingMetadata>
199 </configuration>
200 </plugin>
Xikui Wang993f0ed2018-07-17 11:47:30 -0700201 <plugin>
202 <groupId>org.apache.maven.plugins</groupId>
203 <artifactId>maven-dependency-plugin</artifactId>
204 <configuration>
205 <usedDependencies combine.children="append">
206 <usedDependency>com.sun.xml.bind:jaxb-core</usedDependency>
207 <usedDependency>com.sun.xml.bind:jaxb-impl</usedDependency>
208 <usedDependency>com.sun.activation:javax.activation</usedDependency>
Ian Maxona28ddb72020-04-28 15:36:30 -0700209 <usedDependency>net.razorvine:serpent</usedDependency>
Michael Blow7d462c32021-11-05 11:49:19 -0400210 <usedDependency>io.netty:netty-resolver-dns</usedDependency>
211 <usedDependency>io.netty:netty-codec-http2</usedDependency>
212 <usedDependency>io.netty:netty-transport-native-unix-common</usedDependency>
Hussain Towaileb35c42ac2023-05-23 10:44:10 +0300213 <usedDependency>io.netty:netty-handler-proxy</usedDependency>
Xikui Wang993f0ed2018-07-17 11:47:30 -0700214 </usedDependencies>
215 </configuration>
216 </plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700217 </plugins>
218 </pluginManagement>
219 </build>
220 <dependencies>
221 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700222 <groupId>org.apache.asterix</groupId>
223 <artifactId>asterix-om</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400224 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700225 <type>jar</type>
226 <scope>compile</scope>
227 </dependency>
228 <dependency>
Abdullah Alamoudifba622b2016-05-14 13:01:16 -0700229 <groupId>org.apache.hyracks</groupId>
230 <artifactId>hyracks-test-support</artifactId>
Abdullah Alamoudifba622b2016-05-14 13:01:16 -0700231 <scope>test</scope>
232 </dependency>
233 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700234 <groupId>org.apache.asterix</groupId>
235 <artifactId>asterix-runtime</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400236 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700237 </dependency>
238 <dependency>
239 <groupId>org.apache.hyracks</groupId>
Michael Blow2d90c0c2018-06-16 08:59:54 -0400240 <artifactId>hyracks-hdfs</artifactId>
Abdullah Alamoudi973a0d32016-07-22 14:38:56 +0300241 </dependency>
242 <dependency>
243 <groupId>org.apache.asterix</groupId>
244 <artifactId>asterix-common</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400245 <version>${project.version}</version>
Abdullah Alamoudi973a0d32016-07-22 14:38:56 +0300246 </dependency>
247 <dependency>
248 <groupId>org.apache.asterix</groupId>
249 <artifactId>asterix-active</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400250 <version>${project.version}</version>
Abdullah Alamoudi973a0d32016-07-22 14:38:56 +0300251 </dependency>
252 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700253 <groupId>org.twitter4j</groupId>
254 <artifactId>twitter4j-core</artifactId>
255 <version>4.0.3</version>
Ian Maxon5226ca82017-01-13 12:19:44 -0800256 <scope>provided</scope>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700257 </dependency>
258 <dependency>
259 <groupId>org.twitter4j</groupId>
260 <artifactId>twitter4j-stream</artifactId>
261 <version>4.0.3</version>
Ian Maxon5226ca82017-01-13 12:19:44 -0800262 <scope>provided</scope>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700263 </dependency>
264 <dependency>
Till Westmann7d68c672017-07-19 11:14:12 -0700265 <groupId>com.rometools</groupId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700266 <artifactId>rome-fetcher</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700267 </dependency>
268 <dependency>
Till Westmann7d68c672017-07-19 11:14:12 -0700269 <groupId>com.rometools</groupId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700270 <artifactId>rome</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700271 </dependency>
272 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700273 <groupId>com.e-movimento.tinytools</groupId>
274 <artifactId>privilegedaccessor</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700275 <scope>test</scope>
276 </dependency>
277 <dependency>
278 <groupId>com.couchbase.client</groupId>
279 <artifactId>core-io</artifactId>
Abdullah Alamoudi9747c4b2016-08-26 10:45:09 +0300280 <version>1.3.2</version>
Abdullah Alamoudifba622b2016-05-14 13:01:16 -0700281 </dependency>
282 <dependency>
283 <groupId>org.mockito</groupId>
Ian Maxon4889f6b2021-05-05 02:08:27 -0700284 <artifactId>mockito-core</artifactId>
Abdullah Alamoudifba622b2016-05-14 13:01:16 -0700285 <scope>test</scope>
286 </dependency>
Michael Blow2da62dc2016-06-30 21:18:37 -0400287 <dependency>
288 <groupId>org.apache.hyracks</groupId>
289 <artifactId>hyracks-api</artifactId>
Michael Blow2da62dc2016-06-30 21:18:37 -0400290 <type>test-jar</type>
291 <scope>test</scope>
292 </dependency>
Till Westmann42620f62016-11-23 11:52:24 -0800293 <dependency>
294 <groupId>org.apache.wicket</groupId>
Till Westmann42620f62016-11-23 11:52:24 -0800295 <artifactId>wicket-util</artifactId>
Michael Blow0f7e4872018-12-15 20:01:23 -0500296 <version>8.2.0</version>
Till Westmann42620f62016-11-23 11:52:24 -0800297 <scope>test</scope>
298 </dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500299 <dependency>
300 <groupId>commons-io</groupId>
301 <artifactId>commons-io</artifactId>
302 </dependency>
303 <dependency>
304 <groupId>org.apache.hyracks</groupId>
305 <artifactId>hyracks-dataflow-common</artifactId>
306 </dependency>
307 <dependency>
308 <groupId>org.apache.hyracks</groupId>
Ian Maxona28ddb72020-04-28 15:36:30 -0700309 <artifactId>hyracks-control-common</artifactId>
310 </dependency>
311 <dependency>
312 <groupId>org.apache.hyracks</groupId>
Michael Blow599ef8f2017-01-12 11:02:53 -0500313 <artifactId>hyracks-storage-am-lsm-btree</artifactId>
314 </dependency>
315 <dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500316 <groupId>org.apache.hyracks</groupId>
317 <artifactId>algebricks-data</artifactId>
318 </dependency>
319 <dependency>
320 <groupId>org.apache.hyracks</groupId>
321 <artifactId>algebricks-core</artifactId>
322 </dependency>
323 <dependency>
324 <groupId>org.apache.hyracks</groupId>
325 <artifactId>hyracks-storage-am-lsm-rtree</artifactId>
326 </dependency>
327 <dependency>
328 <groupId>org.apache.hyracks</groupId>
329 <artifactId>algebricks-runtime</artifactId>
330 </dependency>
331 <dependency>
332 <groupId>org.apache.hyracks</groupId>
333 <artifactId>hyracks-storage-am-lsm-common</artifactId>
334 </dependency>
335 <dependency>
336 <groupId>org.apache.hyracks</groupId>
337 <artifactId>hyracks-storage-common</artifactId>
338 </dependency>
339 <dependency>
340 <groupId>org.apache.httpcomponents</groupId>
341 <artifactId>httpclient</artifactId>
342 </dependency>
343 <dependency>
344 <groupId>org.apache.hyracks</groupId>
345 <artifactId>hyracks-util</artifactId>
346 </dependency>
347 <dependency>
348 <groupId>org.apache.hyracks</groupId>
349 <artifactId>algebricks-common</artifactId>
350 </dependency>
351 <dependency>
352 <groupId>org.apache.hadoop</groupId>
353 <artifactId>hadoop-common</artifactId>
354 </dependency>
355 <dependency>
356 <groupId>org.apache.hadoop</groupId>
357 <artifactId>hadoop-mapreduce-client-core</artifactId>
358 </dependency>
359 <dependency>
360 <groupId>org.apache.hyracks</groupId>
361 <artifactId>hyracks-storage-am-rtree</artifactId>
362 </dependency>
363 <dependency>
364 <groupId>org.apache.commons</groupId>
365 <artifactId>commons-lang3</artifactId>
366 </dependency>
367 <dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500368 <groupId>junit</groupId>
369 <artifactId>junit</artifactId>
Murtadha Hubaile25df7d2017-09-19 11:17:38 -0700370 <scope>test</scope>
Michael Blow599ef8f2017-01-12 11:02:53 -0500371 </dependency>
372 <dependency>
373 <groupId>org.apache.hyracks</groupId>
374 <artifactId>hyracks-dataflow-std</artifactId>
375 </dependency>
376 <dependency>
377 <groupId>org.apache.hyracks</groupId>
378 <artifactId>hyracks-data-std</artifactId>
379 </dependency>
380 <dependency>
381 <groupId>org.apache.hyracks</groupId>
382 <artifactId>hyracks-storage-am-btree</artifactId>
383 </dependency>
384 <dependency>
385 <groupId>org.apache.hyracks</groupId>
386 <artifactId>hyracks-storage-am-common</artifactId>
387 </dependency>
388 <dependency>
389 <groupId>org.apache.hyracks</groupId>
390 <artifactId>hyracks-api</artifactId>
391 </dependency>
392 <dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500393 <groupId>com.fasterxml.jackson.core</groupId>
394 <artifactId>jackson-databind</artifactId>
395 </dependency>
Wail Alkowaileet733fba82017-12-07 20:05:35 -0800396 <dependency>
397 <groupId>com.fasterxml.jackson.core</groupId>
398 <artifactId>jackson-core</artifactId>
399 </dependency>
400 <dependency>
401 <groupId>org.apache.commons</groupId>
402 <artifactId>commons-collections4</artifactId>
Michael Blowb8df1c52019-11-08 14:15:42 -0500403 <version>4.4</version>
Wail Alkowaileet733fba82017-12-07 20:05:35 -0800404 </dependency>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +0300405 <dependency>
Xikui Wang993f0ed2018-07-17 11:47:30 -0700406 <groupId>com.sun.xml.bind</groupId>
407 <artifactId>jaxb-core</artifactId>
408 </dependency>
409 <dependency>
410 <groupId>com.sun.xml.bind</groupId>
411 <artifactId>jaxb-impl</artifactId>
412 </dependency>
413 <dependency>
414 <groupId>com.sun.activation</groupId>
415 <artifactId>javax.activation</artifactId>
416 </dependency>
Michael Blow3477a2b2018-10-04 17:17:35 -0400417 <dependency>
418 <groupId>com.esri.geometry</groupId>
419 <artifactId>esri-geometry-api</artifactId>
Michael Blow3477a2b2018-10-04 17:17:35 -0400420 </dependency>
421 <dependency>
422 <groupId>javax.xml.bind</groupId>
423 <artifactId>jaxb-api</artifactId>
424 </dependency>
Xikui Wangeac38882018-10-11 12:07:53 -0700425 <dependency>
426 <groupId>org.apache.hyracks</groupId>
427 <artifactId>hyracks-http</artifactId>
428 </dependency>
429 <dependency>
Ian Maxona28ddb72020-04-28 15:36:30 -0700430 <groupId>com.google.guava</groupId>
431 <artifactId>guava</artifactId>
432 </dependency>
433 <dependency>
Hussain Towailebbc0f7e02020-03-30 16:10:30 +0300434 <groupId>software.amazon.awssdk</groupId>
Hussain Towaileb9f454cd2021-02-05 16:49:11 +0300435 <artifactId>aws-core</artifactId>
436 </dependency>
437 <dependency>
438 <groupId>software.amazon.awssdk</groupId>
Hussain Towaileb93405ea2020-05-27 20:19:04 +0300439 <artifactId>http-client-spi</artifactId>
440 </dependency>
441 <dependency>
442 <groupId>software.amazon.awssdk</groupId>
443 <artifactId>sdk-core</artifactId>
444 </dependency>
445 <dependency>
446 <groupId>software.amazon.awssdk</groupId>
Hussain Towailebbc0f7e02020-03-30 16:10:30 +0300447 <artifactId>s3</artifactId>
448 </dependency>
449 <dependency>
450 <groupId>software.amazon.awssdk</groupId>
451 <artifactId>regions</artifactId>
452 </dependency>
453 <dependency>
454 <groupId>software.amazon.awssdk</groupId>
455 <artifactId>auth</artifactId>
456 </dependency>
Ian Maxon7b959962020-07-23 22:15:40 -0700457 <dependency>
Hussain Towailebe86d9002020-10-16 16:52:27 +0300458 <groupId>com.azure</groupId>
459 <artifactId>azure-storage-blob</artifactId>
460 </dependency>
461 <dependency>
Hussain Towaileb2b6cf222021-08-11 01:55:16 +0300462 <groupId>com.azure</groupId>
Hussain Towaileb002591c2021-10-15 09:30:01 +0300463 <artifactId>azure-storage-file-datalake</artifactId>
464 </dependency>
465 <dependency>
466 <groupId>com.azure</groupId>
Hussain Towaileb2b6cf222021-08-11 01:55:16 +0300467 <artifactId>azure-identity</artifactId>
468 </dependency>
469 <dependency>
Hussain Towailebcf7156d2021-08-13 18:48:10 +0300470 <groupId>com.google.cloud</groupId>
471 <artifactId>google-cloud-storage</artifactId>
472 </dependency>
473 <dependency>
Wail Alkowaileetf984ced2020-10-16 12:44:42 -0700474 <groupId>org.msgpack</groupId>
475 <artifactId>msgpack-core</artifactId>
476 </dependency>
477 <dependency>
478 <groupId>org.apache.parquet</groupId>
479 <artifactId>parquet-column</artifactId>
480 </dependency>
481 <dependency>
482 <groupId>org.apache.parquet</groupId>
483 <artifactId>parquet-hadoop</artifactId>
Ian Maxon7b959962020-07-23 22:15:40 -0700484 </dependency>
Ian Maxon44b4dd82020-10-01 12:58:06 -0700485 <dependency>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700486 <groupId>org.apache.logging.log4j</groupId>
487 <artifactId>log4j-1.2-api</artifactId>
488 </dependency>
Wail Alkowaileet578908a2021-07-08 15:29:47 -0700489 <dependency>
Wail Alkowaileet09cb18f2021-09-08 21:09:54 -0700490 <groupId>com.amazonaws</groupId>
491 <artifactId>aws-java-sdk-s3</artifactId>
492 </dependency>
493 <dependency>
494 <groupId>com.amazonaws</groupId>
495 <artifactId>aws-java-sdk-dynamodb</artifactId>
496 </dependency>
497 <dependency>
Wail Alkowaileet578908a2021-07-08 15:29:47 -0700498 <groupId>org.apache.hadoop</groupId>
499 <artifactId>hadoop-aws</artifactId>
500 </dependency>
Wail Alkowaileet380dbad2021-09-10 03:21:33 -0700501 <dependency>
502 <groupId>org.apache.hadoop</groupId>
503 <artifactId>hadoop-azure</artifactId>
Michael Blow5725e3d2022-03-07 16:34:08 -0500504 <exclusions>
505 <!-- apply patch for HADOOP-17225 to workaround CVE-2019-10172 -->
506 <exclusion>
507 <groupId>org.codehaus.jackson</groupId>
508 <artifactId>jackson-mapper-asl</artifactId>
509 </exclusion>
510 <exclusion>
511 <groupId>org.codehaus.jackson</groupId>
512 <artifactId>jackson-core-asl</artifactId>
513 </exclusion>
514 </exclusions>
515 </dependency>
516 <!-- apply patch for HADOOP-17225 to workaround CVE-2019-10172 -->
517 <dependency>
518 <groupId>org.codehaus.jackson</groupId>
519 <artifactId>jackson-mapper-asl</artifactId>
Michael Blow336237e2022-03-10 09:10:01 -0500520 <version>1.9.14-atlassian-6</version>
Michael Blow5725e3d2022-03-07 16:34:08 -0500521 </dependency>
522 <!-- apply patch for HADOOP-17225 to workaround CVE-2019-10172 -->
523 <dependency>
524 <groupId>org.codehaus.jackson</groupId>
525 <artifactId>jackson-core-asl</artifactId>
Michael Blow336237e2022-03-10 09:10:01 -0500526 <version>1.9.14-atlassian-6</version>
Wail Alkowaileet380dbad2021-09-10 03:21:33 -0700527 </dependency>
Michael Blow7d462c32021-11-05 11:49:19 -0400528 <dependency>
529 <groupId>io.netty</groupId>
530 <artifactId>netty-resolver-dns</artifactId>
531 </dependency>
532 <dependency>
533 <groupId>io.netty</groupId>
534 <artifactId>netty-codec-http2</artifactId>
535 </dependency>
536 <dependency>
537 <groupId>io.netty</groupId>
538 <artifactId>netty-transport-native-unix-common</artifactId>
539 </dependency>
Hussain Towaileb46ca03f2023-05-16 22:34:20 +0300540 <dependency>
541 <groupId>io.netty</groupId>
542 <artifactId>netty-handler-proxy</artifactId>
543 </dependency>
Hussain Towaileb359e5c22022-08-01 06:46:31 +0300544 <!-- TODO(htowaileb): removed from hadoop transitively and added separately to avoid CVEs, can
545 be removed once upgraded to hadoop 3.3.4 as it addresses the CVEs -->
546 <dependency>
547 <groupId>org.eclipse.jetty</groupId>
548 <artifactId>jetty-util</artifactId>
549 </dependency>
550 <dependency>
551 <groupId>org.eclipse.jetty</groupId>
552 <artifactId>jetty-util-ajax</artifactId>
553 </dependency>
Hussain Towailebaedda352023-05-22 04:45:42 +0300554 <!-- Manually included to avoid CVE-2023-1370 -->
555 <dependency>
556 <groupId>net.minidev</groupId>
557 <artifactId>json-smart</artifactId>
558 </dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700559 </dependencies>
Michael Blow5725e3d2022-03-07 16:34:08 -0500560 <!-- apply patch for HADOOP-17225 to workaround CVE-2019-10172 -->
561 <repositories>
562 <repository>
563 <id>atlassian-3rdparty</id>
564 <url>https://packages.atlassian.com/maven-3rdparty/</url>
565 </repository>
566 </repositories>
Michael Blowf8a882d2016-08-02 01:28:34 -0400567</project>