blob: 5259a7c81729fcc4ec9a894543cb1c9552fcd55d [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 !-->
Yingyi Bu198ffbc2017-06-20 23:34:59 -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/xsd/maven-4.0.0.xsd">
Michael Blowb4c1fb02016-05-09 15:41:00 -070021 <modelVersion>4.0.0</modelVersion>
22 <artifactId>hyracks-storage-am-lsm-invertedindex</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -070023 <parent>
24 <artifactId>hyracks</artifactId>
25 <groupId>org.apache.hyracks</groupId>
AsterixDB Jenkins0948b242017-11-20 15:56:08 -080026 <version>0.3.4-SNAPSHOT</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070027 <relativePath>..</relativePath>
28 </parent>
Michael Blowb4c1fb02016-05-09 15:41:00 -070029 <licenses>
30 <license>
31 <name>Apache License, Version 2.0</name>
32 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
33 <distribution>repo</distribution>
34 <comments>A business-friendly OSS license</comments>
35 </license>
36 </licenses>
Ian Maxon9e37c962015-11-25 07:38:37 -080037 <properties>
Michael Blowb4c1fb02016-05-09 15:41:00 -070038 <root.dir>${basedir}/../..</root.dir>
Ian Maxon9e37c962015-11-25 07:38:37 -080039 </properties>
Michael Blowb4c1fb02016-05-09 15:41:00 -070040 <dependencies>
41 <dependency>
42 <groupId>org.apache.hyracks</groupId>
43 <artifactId>hyracks-util</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040044 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070045 </dependency>
46 <dependency>
47 <groupId>org.apache.hyracks</groupId>
48 <artifactId>hyracks-storage-am-btree</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040049 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070050 </dependency>
51 <dependency>
52 <groupId>org.apache.hyracks</groupId>
53 <artifactId>hyracks-storage-am-lsm-common</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040054 <version>${project.version}</version>
Michael Blowba358122016-10-13 19:56:03 -040055 </dependency>
56 <dependency>
57 <groupId>org.apache.hyracks</groupId>
58 <artifactId>hyracks-dataflow-common</artifactId>
59 <version>${project.version}</version>
60 </dependency>
61 <dependency>
62 <groupId>org.apache.hyracks</groupId>
63 <artifactId>hyracks-storage-am-common</artifactId>
64 <version>${project.version}</version>
65 </dependency>
66 <dependency>
67 <groupId>org.apache.hyracks</groupId>
68 <artifactId>hyracks-api</artifactId>
69 <version>${project.version}</version>
70 </dependency>
71 <dependency>
72 <groupId>org.apache.hyracks</groupId>
73 <artifactId>hyracks-dataflow-std</artifactId>
74 <version>${project.version}</version>
75 </dependency>
76 <dependency>
77 <groupId>org.apache.hyracks</groupId>
78 <artifactId>hyracks-storage-common</artifactId>
79 <version>${project.version}</version>
80 </dependency>
81 <dependency>
82 <groupId>org.apache.hyracks</groupId>
83 <artifactId>hyracks-data-std</artifactId>
84 <version>${project.version}</version>
85 </dependency>
86 <dependency>
87 <groupId>org.apache.hyracks</groupId>
88 <artifactId>hyracks-storage-am-bloomfilter</artifactId>
89 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070090 </dependency>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +030091 <dependency>
92 <groupId>org.apache.logging.log4j</groupId>
93 <artifactId>log4j-api</artifactId>
94 </dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -070095 </dependencies>
Abdullah Alamoudid718dc42017-02-02 21:41:48 -080096</project>