blob: 22958acabed82ebc72ccca93aa7dedcb8fffea5c [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">
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 <artifactId>asterix-runtime</artifactId>
27 <properties>
Michael Blow4cd925c2018-01-20 17:15:38 -050028 <root.dir>${basedir}/..</root.dir>
Michael Blowb4c1fb02016-05-09 15:41:00 -070029 </properties>
30 <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>
Michael Blowf8a882d2016-08-02 01:28:34 -040042 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070043 <scope>compile</scope>
44 </dependency>
45 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -070046 <groupId>org.apache.hyracks</groupId>
47 <artifactId>hyracks-storage-am-btree</artifactId>
48 </dependency>
49 <dependency>
50 <groupId>org.apache.hyracks</groupId>
51 <artifactId>hyracks-api</artifactId>
52 </dependency>
53 <dependency>
Till Westmann42620f62016-11-23 11:52:24 -080054 <groupId>org.apache.hyracks</groupId>
55 <artifactId>hyracks-control-cc</artifactId>
56 </dependency>
57 <dependency>
58 <groupId>org.apache.hyracks</groupId>
Michael Blow599ef8f2017-01-12 11:02:53 -050059 <artifactId>algebricks-common</artifactId>
60 </dependency>
61 <dependency>
62 <groupId>org.apache.hyracks</groupId>
63 <artifactId>hyracks-util</artifactId>
64 </dependency>
65 <dependency>
66 <groupId>org.apache.hyracks</groupId>
67 <artifactId>hyracks-dataflow-common</artifactId>
68 </dependency>
69 <dependency>
70 <groupId>org.apache.hyracks</groupId>
71 <artifactId>algebricks-data</artifactId>
72 </dependency>
73 <dependency>
74 <groupId>org.apache.asterix</groupId>
75 <artifactId>asterix-common</artifactId>
76 <version>${project.version}</version>
77 </dependency>
78 <dependency>
79 <groupId>org.apache.hyracks</groupId>
80 <artifactId>algebricks-core</artifactId>
81 </dependency>
82 <dependency>
83 <groupId>org.apache.commons</groupId>
84 <artifactId>commons-lang3</artifactId>
85 </dependency>
86 <dependency>
87 <groupId>org.apache.hyracks</groupId>
Michael Blow599ef8f2017-01-12 11:02:53 -050088 <artifactId>hyracks-dataflow-std</artifactId>
89 </dependency>
90 <dependency>
91 <groupId>org.apache.hyracks</groupId>
92 <artifactId>hyracks-data-std</artifactId>
93 </dependency>
94 <dependency>
95 <groupId>com.google.guava</groupId>
96 <artifactId>guava</artifactId>
97 </dependency>
98 <dependency>
99 <groupId>org.apache.hyracks</groupId>
100 <artifactId>algebricks-runtime</artifactId>
101 </dependency>
102 <dependency>
103 <groupId>org.apache.hyracks</groupId>
104 <artifactId>hyracks-storage-am-common</artifactId>
105 </dependency>
106 <dependency>
107 <groupId>org.apache.hyracks</groupId>
108 <artifactId>hyracks-storage-am-lsm-common</artifactId>
109 </dependency>
110 <dependency>
111 <groupId>org.apache.hyracks</groupId>
112 <artifactId>hyracks-storage-common</artifactId>
113 </dependency>
114 <dependency>
Michael Blow4c7b5bf2017-03-06 21:55:58 -0500115 <groupId>org.apache.hyracks</groupId>
116 <artifactId>hyracks-control-common</artifactId>
117 </dependency>
118 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700119 <groupId>org.apache.asterix</groupId>
120 <artifactId>asterix-transactions</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400121 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700122 </dependency>
123 <dependency>
Michael Blow599ef8f2017-01-12 11:02:53 -0500124 <groupId>com.fasterxml.jackson.core</groupId>
125 <artifactId>jackson-databind</artifactId>
126 </dependency>
Yingyi Bue0c232d2017-01-24 09:02:45 -0800127 <dependency>
Murtadha Hubailda7e8a12018-12-04 02:29:11 +0300128 <groupId>org.apache.hyracks</groupId>
129 <artifactId>hyracks-ipc</artifactId>
130 </dependency>
131 <dependency>
Yingyi Bue0c232d2017-01-24 09:02:45 -0800132 <groupId>junit</groupId>
133 <artifactId>junit</artifactId>
134 <scope>test</scope>
135 </dependency>
136 <dependency>
137 <groupId>org.mockito</groupId>
Ian Maxon4889f6b2021-05-05 02:08:27 -0700138 <artifactId>mockito-core</artifactId>
Yingyi Bue0c232d2017-01-24 09:02:45 -0800139 <scope>test</scope>
140 </dependency>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +0300141 <dependency>
142 <groupId>org.apache.logging.log4j</groupId>
143 <artifactId>log4j-api</artifactId>
144 </dependency>
Ali Alsuliman407e56b2018-07-17 18:21:15 -0700145 <dependency>
146 <groupId>it.unimi.dsi</groupId>
147 <artifactId>fastutil</artifactId>
Ali Alsuliman407e56b2018-07-17 18:21:15 -0700148 </dependency>
Murtadha Hubailaf2f0632019-03-29 19:09:38 +0300149 <dependency>
150 <groupId>org.apache.commons</groupId>
151 <artifactId>commons-collections4</artifactId>
152 </dependency>
MehnazMahinc684f7f2020-04-08 18:29:10 -0700153 <dependency>
154 <groupId>com.esri.geometry</groupId>
155 <artifactId>esri-geometry-api</artifactId>
156 </dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700157 </dependencies>
vinayakb38b7ca42012-03-05 05:44:15 +0000158</project>