blob: 64141390030da413984ccb7f93da90417878ef49 [file] [log] [blame]
Till Westmannea8ab392013-06-05 15:17:08 -07001<!--
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.
Till Westmannea8ab392013-06-05 15:17:08 -070018 !-->
vinayakb8a1a7182013-04-07 01:45:00 +000019<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">
Abdullah Alamoudi284590e2016-01-03 15:42:18 +030020 <modelVersion>4.0.0</modelVersion>
21 <parent>
Ian Maxon3da9d062016-03-16 17:05:31 -070022 <artifactId>apache-asterixdb</artifactId>
Abdullah Alamoudi284590e2016-01-03 15:42:18 +030023 <groupId>org.apache.asterix</groupId>
Ian Maxon3da9d062016-03-16 17:05:31 -070024 <version>0.8.9-SNAPSHOT</version>
Abdullah Alamoudi284590e2016-01-03 15:42:18 +030025 </parent>
26 <artifactId>asterix-runtime</artifactId>
Ian Maxon3da9d062016-03-16 17:05:31 -070027 <properties>
28 <appendedResourcesDirectory>${basedir}/../src/main/appended-resources</appendedResourcesDirectory>
29 </properties>
Abdullah Alamoudi284590e2016-01-03 15:42:18 +030030 <licenses>
31 <license>
32 <name>Apache License, Version 2.0</name>
33 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
34 <distribution>repo</distribution>
35 <comments>A business-friendly OSS license</comments>
36 </license>
37 </licenses>
38 <dependencies>
39 <dependency>
40 <groupId>org.apache.asterix</groupId>
41 <artifactId>asterix-om</artifactId>
Ian Maxon3da9d062016-03-16 17:05:31 -070042 <version>0.8.9-SNAPSHOT</version>
Abdullah Alamoudi284590e2016-01-03 15:42:18 +030043 <scope>compile</scope>
Yingyi Bu9a554a72015-12-01 20:45:50 -080044 </dependency>
Abdullah Alamoudi284590e2016-01-03 15:42:18 +030045 <dependency>
46 <groupId>org.apache.asterix</groupId>
47 <artifactId>asterix-fuzzyjoin</artifactId>
Ian Maxon3da9d062016-03-16 17:05:31 -070048 <version>0.8.9-SNAPSHOT</version>
Abdullah Alamoudi284590e2016-01-03 15:42:18 +030049 <scope>compile</scope>
50 </dependency>
51 <dependency>
52 <groupId>org.apache.hyracks</groupId>
53 <artifactId>hyracks-storage-am-btree</artifactId>
54 </dependency>
55 <dependency>
56 <groupId>org.apache.asterix</groupId>
57 <artifactId>asterix-transactions</artifactId>
Ian Maxon3da9d062016-03-16 17:05:31 -070058 <version>0.8.9-SNAPSHOT</version>
Abdullah Alamoudi284590e2016-01-03 15:42:18 +030059 <scope>compile</scope>
60 </dependency>
61 <dependency>
62 <groupId>org.twitter4j</groupId>
63 <artifactId>twitter4j-core</artifactId>
64 <version>[4.0,)</version>
65 </dependency>
66 <dependency>
67 <groupId>org.twitter4j</groupId>
68 <artifactId>twitter4j-stream</artifactId>
69 <version>[4.0,)</version>
70 </dependency>
71 <dependency>
72 <groupId>org.apache.hadoop</groupId>
73 <artifactId>hadoop-client</artifactId>
74 <type>jar</type>
75 <scope>compile</scope>
76 </dependency>
77 <dependency>
78 <groupId>org.apache.hyracks</groupId>
79 <artifactId>hyracks-api</artifactId>
80 </dependency>
81 </dependencies>
vinayakb38b7ca42012-03-05 05:44:15 +000082</project>