blob: 38f211e22b11076755b60534561a4192bcf66503 [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 Maxonbf0abd42024-03-05 11:26:12 -080027 <version>0.3.8.3-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 Blow22c6d542023-10-03 23:30:18 -040051 <scope>test</scope>
Michael Blowb4c1fb02016-05-09 15:41:00 -070052 </dependency>
53 <dependency>
54 <groupId>org.apache.hyracks</groupId>
55 <artifactId>hyracks-test-support</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040056 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070057 <scope>test</scope>
58 </dependency>
59 <dependency>
60 <groupId>org.apache.hyracks</groupId>
61 <artifactId>hyracks-data-std</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040062 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070063 <scope>test</scope>
64 </dependency>
65 <dependency>
66 <groupId>org.apache.hyracks</groupId>
67 <artifactId>hyracks-util</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040068 <version>${project.version}</version>
Michael Blow22c6d542023-10-03 23:30:18 -040069 <scope>test</scope>
Michael Blowba358122016-10-13 19:56:03 -040070 </dependency>
71 <dependency>
72 <groupId>org.apache.hyracks</groupId>
73 <artifactId>hyracks-dataflow-common</artifactId>
74 <version>${project.version}</version>
Michael Blow22c6d542023-10-03 23:30:18 -040075 <scope>test</scope>
Michael Blowba358122016-10-13 19:56:03 -040076 </dependency>
77 <dependency>
78 <groupId>org.apache.hyracks</groupId>
Taewoo Kimafe0d3d2018-02-18 19:12:08 -080079 <artifactId>hyracks-dataflow-std</artifactId>
80 <version>${project.version}</version>
Michael Blow22c6d542023-10-03 23:30:18 -040081 <scope>test</scope>
Taewoo Kimafe0d3d2018-02-18 19:12:08 -080082 </dependency>
83 <dependency>
84 <groupId>org.apache.hyracks</groupId>
Michael Blowba358122016-10-13 19:56:03 -040085 <artifactId>hyracks-storage-am-common</artifactId>
86 <version>${project.version}</version>
Michael Blow22c6d542023-10-03 23:30:18 -040087 <scope>test</scope>
Michael Blowba358122016-10-13 19:56:03 -040088 </dependency>
89 <dependency>
90 <groupId>org.apache.hyracks</groupId>
91 <artifactId>hyracks-storage-am-lsm-common</artifactId>
92 <version>${project.version}</version>
Michael Blow22c6d542023-10-03 23:30:18 -040093 <scope>test</scope>
Michael Blowba358122016-10-13 19:56:03 -040094 </dependency>
95 <dependency>
96 <groupId>org.apache.hyracks</groupId>
97 <artifactId>hyracks-api</artifactId>
98 <version>${project.version}</version>
Michael Blow22c6d542023-10-03 23:30:18 -040099 <scope>test</scope>
Michael Blowba358122016-10-13 19:56:03 -0400100 </dependency>
101 <dependency>
102 <groupId>org.apache.hyracks</groupId>
103 <artifactId>hyracks-control-nc</artifactId>
104 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700105 <scope>test</scope>
106 </dependency>
Michael Blowba358122016-10-13 19:56:03 -0400107 <dependency>
108 <groupId>org.apache.hyracks</groupId>
109 <artifactId>hyracks-storage-common</artifactId>
110 <version>${project.version}</version>
Michael Blow22c6d542023-10-03 23:30:18 -0400111 <scope>test</scope>
Michael Blowba358122016-10-13 19:56:03 -0400112 </dependency>
113 <dependency>
114 <groupId>junit</groupId>
115 <artifactId>junit</artifactId>
116 <scope>test</scope>
117 </dependency>
118 <dependency>
119 <groupId>org.apache.hyracks</groupId>
120 <artifactId>hyracks-storage-am-btree</artifactId>
121 <version>${project.version}</version>
Michael Blow22c6d542023-10-03 23:30:18 -0400122 <scope>test</scope>
Michael Blowba358122016-10-13 19:56:03 -0400123 </dependency>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +0300124 <dependency>
125 <groupId>org.apache.logging.log4j</groupId>
126 <artifactId>log4j-api</artifactId>
Michael Blow22c6d542023-10-03 23:30:18 -0400127 <scope>test</scope>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +0300128 </dependency>
Rui Guoe6986dd2020-11-25 19:50:06 -0800129 <dependency>
130 <groupId>com.google.guava</groupId>
131 <artifactId>guava</artifactId>
Michael Blow22c6d542023-10-03 23:30:18 -0400132 <scope>test</scope>
Rui Guoe6986dd2020-11-25 19:50:06 -0800133 </dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700134 </dependencies>
Ian Maxon5ae0df82015-10-14 10:45:19 -0700135
Ian Maxon9e37c962015-11-25 07:38:37 -0800136</project>