blob: b6b37613122373788899ed2e4851c887155ae409 [file] [log] [blame]
Till Westmann276bbc22013-06-05 18:56:27 -07001<!--
Ian Maxond8857792015-09-11 14:19:53 -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 Westmann276bbc22013-06-05 18:56:27 -070018 !-->
Abdullah Alamoudi9d69d1b2017-03-13 12:02:56 -070019<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
vinayakb4df31102013-04-06 18:28:48 +000021 <modelVersion>4.0.0</modelVersion>
22 <artifactId>hyracks-storage-am-lsm-common</artifactId>
vinayakb4df31102013-04-06 18:28:48 +000023 <parent>
Ian Maxone915e8c2015-07-01 17:03:31 -070024 <groupId>org.apache.hyracks</groupId>
vinayakb4df31102013-04-06 18:28:48 +000025 <artifactId>hyracks</artifactId>
AsterixDB Jenkins23bd6ef2018-08-31 14:56:33 -070026 <version>0.3.4</version>
vinayakb4df31102013-04-06 18:28:48 +000027 </parent>
Iane82f8112014-11-19 12:31:18 -080028 <licenses>
29 <license>
30 <name>Apache License, Version 2.0</name>
31 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
32 <distribution>repo</distribution>
33 <comments>A business-friendly OSS license</comments>
34 </license>
35 </licenses>
Ian Maxon9e37c962015-11-25 07:38:37 -080036 <properties>
Michael Blowb4c1fb02016-05-09 15:41:00 -070037 <root.dir>${basedir}/../..</root.dir>
Ian Maxon9e37c962015-11-25 07:38:37 -080038 </properties>
vinayakb4df31102013-04-06 18:28:48 +000039 <dependencies>
Michael Blowb4c1fb02016-05-09 15:41:00 -070040 <dependency>
41 <groupId>org.apache.hyracks</groupId>
42 <artifactId>hyracks-storage-am-common</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040043 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070044 </dependency>
45 <dependency>
46 <groupId>org.apache.hyracks</groupId>
47 <artifactId>hyracks-storage-am-bloomfilter</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040048 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070049 </dependency>
50 <dependency>
51 <groupId>org.apache.hyracks</groupId>
52 <artifactId>hyracks-storage-am-btree</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040053 <version>${project.version}</version>
Michael Blowba358122016-10-13 19:56:03 -040054 </dependency>
55 <dependency>
56 <groupId>org.apache.hyracks</groupId>
57 <artifactId>hyracks-dataflow-common</artifactId>
58 <version>${project.version}</version>
59 </dependency>
60 <dependency>
61 <groupId>org.apache.hyracks</groupId>
62 <artifactId>hyracks-api</artifactId>
63 <version>${project.version}</version>
64 </dependency>
65 <dependency>
66 <groupId>org.apache.hyracks</groupId>
67 <artifactId>hyracks-storage-common</artifactId>
68 <version>${project.version}</version>
69 </dependency>
70 <dependency>
71 <groupId>org.apache.hyracks</groupId>
72 <artifactId>hyracks-dataflow-std</artifactId>
73 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070074 </dependency>
Abdullah Alamoudi90cdbac2017-01-05 18:18:48 -080075 <dependency>
76 <groupId>org.apache.hyracks</groupId>
77 <artifactId>hyracks-data-std</artifactId>
78 <version>${project.version}</version>
79 </dependency>
Abdullah Alamoudid718dc42017-02-02 21:41:48 -080080 <dependency>
81 <groupId>org.apache.commons</groupId>
82 <artifactId>commons-lang3</artifactId>
83 </dependency>
Abdullah Alamoudi9d69d1b2017-03-13 12:02:56 -070084 <dependency>
Yingyi Bu198ffbc2017-06-20 23:34:59 -070085 <groupId>org.apache.hyracks</groupId>
86 <artifactId>hyracks-util</artifactId>
87 <version>${project.version}</version>
Abdullah Alamoudi9d69d1b2017-03-13 12:02:56 -070088 </dependency>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +030089 <dependency>
90 <groupId>org.apache.logging.log4j</groupId>
91 <artifactId>log4j-api</artifactId>
92 </dependency>
vinayakb4df31102013-04-06 18:28:48 +000093 </dependencies>
Abdullah Alamoudi90cdbac2017-01-05 18:18:48 -080094</project>