blob: 49346606041eb740110db528cec1df1f8a779653 [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 !-->
Ian Maxond8857792015-09-11 14:19:53 -070019
Michael Blow380b0a22016-08-02 13:05:52 -040020<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 -070021 <modelVersion>4.0.0</modelVersion>
22 <artifactId>hyracks-storage-am-lsm-invertedindex-test</artifactId>
vinayakb4df31102013-04-06 18:28:48 +000023
Michael Blowb4c1fb02016-05-09 15:41:00 -070024 <parent>
25 <artifactId>hyracks-tests</artifactId>
26 <groupId>org.apache.hyracks</groupId>
Ian Maxonc95de7a2020-08-07 11:58:39 -070027 <version>0.3.6-SNAPSHOT</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070028 <relativePath>..</relativePath>
29 </parent>
vinayakb4df31102013-04-06 18:28:48 +000030
Michael Blowb4c1fb02016-05-09 15:41:00 -070031 <build>
32 <plugins>
33 <plugin>
34 <groupId>org.apache.maven.plugins</groupId>
35 <artifactId>maven-deploy-plugin</artifactId>
36 <configuration>
37 <skip>true</skip>
38 </configuration>
39 </plugin>
40 </plugins>
41 </build>
42 <properties>
43 <root.dir>${basedir}/../../..</root.dir>
44 </properties>
Ian Maxonb165aca2016-03-17 18:21:57 -070045
Michael Blowb4c1fb02016-05-09 15:41:00 -070046 <dependencies>
47 <dependency>
48 <groupId>org.apache.hyracks</groupId>
49 <artifactId>hyracks-storage-am-lsm-invertedindex</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040050 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070051 </dependency>
52 <dependency>
53 <groupId>org.apache.hyracks</groupId>
54 <artifactId>hyracks-test-support</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040055 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070056 <scope>test</scope>
57 </dependency>
58 <dependency>
59 <groupId>org.apache.hyracks</groupId>
60 <artifactId>hyracks-data-std</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040061 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070062 <scope>test</scope>
63 </dependency>
64 <dependency>
65 <groupId>org.apache.hyracks</groupId>
66 <artifactId>hyracks-util</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040067 <version>${project.version}</version>
Michael Blowba358122016-10-13 19:56:03 -040068 </dependency>
69 <dependency>
70 <groupId>org.apache.hyracks</groupId>
71 <artifactId>hyracks-dataflow-common</artifactId>
72 <version>${project.version}</version>
73 </dependency>
74 <dependency>
75 <groupId>org.apache.hyracks</groupId>
Taewoo Kimafe0d3d2018-02-18 19:12:08 -080076 <artifactId>hyracks-dataflow-std</artifactId>
77 <version>${project.version}</version>
78 </dependency>
79 <dependency>
80 <groupId>org.apache.hyracks</groupId>
Michael Blowba358122016-10-13 19:56:03 -040081 <artifactId>hyracks-storage-am-common</artifactId>
82 <version>${project.version}</version>
83 </dependency>
84 <dependency>
85 <groupId>org.apache.hyracks</groupId>
86 <artifactId>hyracks-storage-am-lsm-common</artifactId>
87 <version>${project.version}</version>
88 </dependency>
89 <dependency>
90 <groupId>org.apache.hyracks</groupId>
91 <artifactId>hyracks-api</artifactId>
92 <version>${project.version}</version>
93 </dependency>
94 <dependency>
95 <groupId>org.apache.hyracks</groupId>
96 <artifactId>hyracks-control-nc</artifactId>
97 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070098 <scope>test</scope>
99 </dependency>
Michael Blowba358122016-10-13 19:56:03 -0400100 <dependency>
101 <groupId>org.apache.hyracks</groupId>
102 <artifactId>hyracks-storage-common</artifactId>
103 <version>${project.version}</version>
104 </dependency>
105 <dependency>
106 <groupId>junit</groupId>
107 <artifactId>junit</artifactId>
108 <scope>test</scope>
109 </dependency>
110 <dependency>
111 <groupId>org.apache.hyracks</groupId>
112 <artifactId>hyracks-storage-am-btree</artifactId>
113 <version>${project.version}</version>
114 </dependency>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +0300115 <dependency>
116 <groupId>org.apache.logging.log4j</groupId>
117 <artifactId>log4j-api</artifactId>
118 </dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700119 </dependencies>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700120
Ian Maxon9e37c962015-11-25 07:38:37 -0800121</project>