blob: 74d2defd345c10c4c1fce0e5ed64ed427c1bea72 [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>
AsterixDB Jenkins0948b242017-11-20 15:56:08 -080024 <version>0.9.4-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>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700104 <include>**/NOTICE</include>
105 <include>**/LICENSE</include>
Michael Blow82464fb2017-03-28 18:48:13 -0400106 <include>**/*.properties</include>
Xikui Wangf17def92017-01-10 14:46:44 -0800107 <include>**/services/**</include>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700108 </includes>
109 </configuration>
110 <executions>
111 <execution>
112 <goals>
113 <goal>test-jar</goal>
114 </goals>
115 <phase>package</phase>
116 </execution>
117 </executions>
118 </plugin>
119 <plugin>
120 <artifactId>maven-assembly-plugin</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700121 <executions>
122 <execution>
123 <configuration>
Michael Blow82464fb2017-03-28 18:48:13 -0400124 <descriptors>src/main/assembly/binary-assembly-libzip.xml</descriptors>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700125 </configuration>
126 <phase>package</phase>
127 <goals>
Michael Blow82464fb2017-03-28 18:48:13 -0400128 <goal>single</goal>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700129 </goals>
130 </execution>
131 </executions>
132 </plugin>
Michael Blow599ef8f2017-01-12 11:02:53 -0500133 <plugin>
Michael Blow82464fb2017-03-28 18:48:13 -0400134 <groupId>org.apache.rat</groupId>
135 <artifactId>apache-rat-plugin</artifactId>
136 <configuration>
137 <licenses combine.children="append">
138 <license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense">
139 <licenseFamilyCategory>Kermit</licenseFamilyCategory>
140 <licenseFamilyName>Kermit Project</licenseFamilyName>
Michael Blow07570112017-04-11 21:38:31 -0400141 <notes>The UTF-8 sample "I Can Eat Glass" from The Kermit Project (license in LICENSE file)</notes>
142 <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 -0400143 </license>
144 </licenses>
145 <licenseFamilies combine.children="append">
146 <licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
147 <familyName>Kermit Project</familyName>
148 </licenseFamily>
149 </licenseFamilies>
150 <excludes combine.children="append">
Michael Blow82464fb2017-03-28 18:48:13 -0400151 <exclude>src/test/resources/classad/**</exclude> <!-- HTCondor (license in LICENSE file) -->
152 <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>
Abdullah Alamoudifba622b2016-05-14 13:01:16 -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>
209 </usedDependencies>
210 </configuration>
211 </plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700212 </plugins>
213 </pluginManagement>
214 </build>
215 <dependencies>
216 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700217 <groupId>org.apache.asterix</groupId>
218 <artifactId>asterix-om</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400219 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700220 <type>jar</type>
221 <scope>compile</scope>
222 </dependency>
223 <dependency>
Abdullah Alamoudifba622b2016-05-14 13:01:16 -0700224 <groupId>org.apache.hyracks</groupId>
225 <artifactId>hyracks-test-support</artifactId>
Abdullah Alamoudifba622b2016-05-14 13:01:16 -0700226 <scope>test</scope>
227 </dependency>
228 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700229 <groupId>org.apache.asterix</groupId>
230 <artifactId>asterix-runtime</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400231 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700232 </dependency>
233 <dependency>
234 <groupId>org.apache.hyracks</groupId>
Michael Blow2d90c0c2018-06-16 08:59:54 -0400235 <artifactId>hyracks-hdfs</artifactId>
Abdullah Alamoudi973a0d32016-07-22 14:38:56 +0300236 </dependency>
237 <dependency>
238 <groupId>org.apache.asterix</groupId>
239 <artifactId>asterix-common</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400240 <version>${project.version}</version>
Abdullah Alamoudi973a0d32016-07-22 14:38:56 +0300241 </dependency>
242 <dependency>
243 <groupId>org.apache.asterix</groupId>
244 <artifactId>asterix-active</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400245 <version>${project.version}</version>
Abdullah Alamoudi973a0d32016-07-22 14:38:56 +0300246 </dependency>
247 <dependency>
Ian Maxon5226ca82017-01-13 12:19:44 -0800248 <groupId>org.apache.asterix</groupId>
249 <artifactId>asterix-hivecompat</artifactId>
250 <version>${project.version}</version>
251 </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>org.apache.hive</groupId>
Ian Maxon5226ca82017-01-13 12:19:44 -0800274 <artifactId>hive-serde</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700275 </dependency>
276 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700277 <groupId>com.e-movimento.tinytools</groupId>
278 <artifactId>privilegedaccessor</artifactId>
279 <version>1.2.2</version>
280 <scope>test</scope>
281 </dependency>
282 <dependency>
283 <groupId>com.couchbase.client</groupId>
284 <artifactId>core-io</artifactId>
Abdullah Alamoudi9747c4b2016-08-26 10:45:09 +0300285 <version>1.3.2</version>
Abdullah Alamoudifba622b2016-05-14 13:01:16 -0700286 </dependency>
287 <dependency>
288 <groupId>org.mockito</groupId>
289 <artifactId>mockito-all</artifactId>
290 <version>2.0.2-beta</version>
291 <scope>test</scope>
292 </dependency>
Michael Blow2da62dc2016-06-30 21:18:37 -0400293 <dependency>
294 <groupId>org.apache.hyracks</groupId>
295 <artifactId>hyracks-api</artifactId>
Michael Blow2da62dc2016-06-30 21:18:37 -0400296 <type>test-jar</type>
297 <scope>test</scope>
298 </dependency>
Till Westmann42620f62016-11-23 11:52:24 -0800299 <dependency>
300 <groupId>org.apache.wicket</groupId>
Till Westmann42620f62016-11-23 11:52:24 -0800301 <artifactId>wicket-util</artifactId>
302 <version>1.5.2</version>
303 <scope>test</scope>
304 </dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500305 <dependency>
306 <groupId>commons-io</groupId>
307 <artifactId>commons-io</artifactId>
308 </dependency>
309 <dependency>
310 <groupId>org.apache.hyracks</groupId>
311 <artifactId>hyracks-dataflow-common</artifactId>
312 </dependency>
313 <dependency>
314 <groupId>org.apache.hyracks</groupId>
315 <artifactId>hyracks-storage-am-lsm-btree</artifactId>
316 </dependency>
317 <dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500318 <groupId>org.apache.hyracks</groupId>
319 <artifactId>algebricks-data</artifactId>
320 </dependency>
321 <dependency>
322 <groupId>org.apache.hyracks</groupId>
323 <artifactId>algebricks-core</artifactId>
324 </dependency>
325 <dependency>
326 <groupId>org.apache.hyracks</groupId>
327 <artifactId>hyracks-storage-am-lsm-rtree</artifactId>
328 </dependency>
329 <dependency>
330 <groupId>org.apache.hyracks</groupId>
331 <artifactId>algebricks-runtime</artifactId>
332 </dependency>
333 <dependency>
334 <groupId>org.apache.hyracks</groupId>
335 <artifactId>hyracks-storage-am-lsm-common</artifactId>
336 </dependency>
337 <dependency>
338 <groupId>org.apache.hyracks</groupId>
339 <artifactId>hyracks-storage-common</artifactId>
340 </dependency>
341 <dependency>
342 <groupId>org.apache.httpcomponents</groupId>
343 <artifactId>httpclient</artifactId>
344 </dependency>
345 <dependency>
346 <groupId>org.apache.hyracks</groupId>
347 <artifactId>hyracks-util</artifactId>
348 </dependency>
349 <dependency>
350 <groupId>org.apache.hyracks</groupId>
351 <artifactId>algebricks-common</artifactId>
352 </dependency>
353 <dependency>
354 <groupId>org.apache.hadoop</groupId>
355 <artifactId>hadoop-common</artifactId>
356 </dependency>
357 <dependency>
358 <groupId>org.apache.hadoop</groupId>
359 <artifactId>hadoop-mapreduce-client-core</artifactId>
360 </dependency>
361 <dependency>
362 <groupId>org.apache.hyracks</groupId>
363 <artifactId>hyracks-storage-am-rtree</artifactId>
364 </dependency>
365 <dependency>
366 <groupId>org.apache.commons</groupId>
367 <artifactId>commons-lang3</artifactId>
368 </dependency>
369 <dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500370 <groupId>junit</groupId>
371 <artifactId>junit</artifactId>
Murtadha Hubaile25df7d2017-09-19 11:17:38 -0700372 <scope>test</scope>
Michael Blow599ef8f2017-01-12 11:02:53 -0500373 </dependency>
374 <dependency>
375 <groupId>org.apache.hyracks</groupId>
376 <artifactId>hyracks-dataflow-std</artifactId>
377 </dependency>
378 <dependency>
379 <groupId>org.apache.hyracks</groupId>
380 <artifactId>hyracks-data-std</artifactId>
381 </dependency>
382 <dependency>
383 <groupId>org.apache.hyracks</groupId>
384 <artifactId>hyracks-storage-am-btree</artifactId>
385 </dependency>
386 <dependency>
387 <groupId>org.apache.hyracks</groupId>
388 <artifactId>hyracks-storage-am-common</artifactId>
389 </dependency>
390 <dependency>
391 <groupId>org.apache.hyracks</groupId>
392 <artifactId>hyracks-api</artifactId>
393 </dependency>
394 <dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500395 <groupId>com.fasterxml.jackson.core</groupId>
396 <artifactId>jackson-databind</artifactId>
397 </dependency>
Wail Alkowaileet733fba82017-12-07 20:05:35 -0800398 <dependency>
399 <groupId>com.fasterxml.jackson.core</groupId>
400 <artifactId>jackson-core</artifactId>
401 </dependency>
402 <dependency>
403 <groupId>org.apache.commons</groupId>
404 <artifactId>commons-collections4</artifactId>
405 <version>4.1</version>
406 </dependency>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +0300407 <dependency>
408 <groupId>org.apache.logging.log4j</groupId>
409 <artifactId>log4j-api</artifactId>
410 </dependency>
Xikui Wang993f0ed2018-07-17 11:47:30 -0700411 <dependency>
412 <groupId>com.sun.xml.bind</groupId>
413 <artifactId>jaxb-core</artifactId>
414 </dependency>
415 <dependency>
416 <groupId>com.sun.xml.bind</groupId>
417 <artifactId>jaxb-impl</artifactId>
418 </dependency>
419 <dependency>
420 <groupId>com.sun.activation</groupId>
421 <artifactId>javax.activation</artifactId>
422 </dependency>
Michael Blow3477a2b2018-10-04 17:17:35 -0400423 <dependency>
424 <groupId>com.esri.geometry</groupId>
425 <artifactId>esri-geometry-api</artifactId>
426 <version>2.0.0</version>
427 </dependency>
428 <dependency>
429 <groupId>javax.xml.bind</groupId>
430 <artifactId>jaxb-api</artifactId>
431 </dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700432 </dependencies>
Michael Blowf8a882d2016-08-02 01:28:34 -0400433</project>