blob: bab356b3dcea2abad8793ccb76198ee13ff492c5 [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>
27 <version>0.2.18-SNAPSHOT</version>
28 <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 <type>jar</type>
52 <scope>compile</scope>
53 </dependency>
54 <dependency>
55 <groupId>org.apache.hyracks</groupId>
56 <artifactId>hyracks-test-support</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040057 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070058 <type>jar</type>
59 <scope>test</scope>
60 </dependency>
61 <dependency>
62 <groupId>org.apache.hyracks</groupId>
63 <artifactId>hyracks-data-std</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040064 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070065 <type>jar</type>
66 <scope>test</scope>
67 </dependency>
68 <dependency>
69 <groupId>org.apache.hyracks</groupId>
70 <artifactId>hyracks-util</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040071 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070072 <type>test-jar</type>
73 <scope>test</scope>
74 </dependency>
75 </dependencies>
Ian Maxon5ae0df82015-10-14 10:45:19 -070076
Ian Maxon9e37c962015-11-25 07:38:37 -080077</project>