blob: 010a343457f58fbb17a52a51b5e7d17360604058 [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 !-->
Michael Blow380b0a22016-08-02 13:05:52 -040019<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 <artifactId>hyracks-storage-am-lsm-invertedindex</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -070022 <parent>
23 <artifactId>hyracks</artifactId>
24 <groupId>org.apache.hyracks</groupId>
Ian Maxona3435a32017-01-18 18:31:30 -080025 <version>0.3.1-SNAPSHOT</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070026 <relativePath>..</relativePath>
27 </parent>
Michael Blowb4c1fb02016-05-09 15:41:00 -070028 <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>
Michael Blowb4c1fb02016-05-09 15:41:00 -070039 <dependencies>
40 <dependency>
41 <groupId>org.apache.hyracks</groupId>
42 <artifactId>hyracks-util</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-btree</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-lsm-common</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-storage-am-common</artifactId>
63 <version>${project.version}</version>
64 </dependency>
65 <dependency>
66 <groupId>org.apache.hyracks</groupId>
67 <artifactId>hyracks-api</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>
74 </dependency>
75 <dependency>
76 <groupId>org.apache.hyracks</groupId>
77 <artifactId>hyracks-storage-common</artifactId>
78 <version>${project.version}</version>
79 </dependency>
80 <dependency>
81 <groupId>org.apache.hyracks</groupId>
82 <artifactId>hyracks-data-std</artifactId>
83 <version>${project.version}</version>
84 </dependency>
85 <dependency>
86 <groupId>org.apache.hyracks</groupId>
87 <artifactId>hyracks-storage-am-bloomfilter</artifactId>
88 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070089 </dependency>
90 </dependencies>
Abdullah Alamoudid718dc42017-02-02 21:41:48 -080091</project>