blob: 8277ef82538b718a236db864de929d5429c60cb7 [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
JavierJia26c3b532015-10-23 13:49:32 -070020<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
21 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 -070022 <modelVersion>4.0.0</modelVersion>
23 <artifactId>hyracks-storage-am-lsm-invertedindex-test</artifactId>
vinayakb4df31102013-04-06 18:28:48 +000024
Michael Blowb4c1fb02016-05-09 15:41:00 -070025 <parent>
26 <artifactId>hyracks-tests</artifactId>
27 <groupId>org.apache.hyracks</groupId>
28 <version>0.2.18-SNAPSHOT</version>
29 <relativePath>..</relativePath>
30 </parent>
vinayakb4df31102013-04-06 18:28:48 +000031
Michael Blowb4c1fb02016-05-09 15:41:00 -070032 <build>
33 <plugins>
34 <plugin>
35 <groupId>org.apache.maven.plugins</groupId>
36 <artifactId>maven-deploy-plugin</artifactId>
37 <configuration>
38 <skip>true</skip>
39 </configuration>
40 </plugin>
41 </plugins>
42 </build>
43 <properties>
44 <root.dir>${basedir}/../../..</root.dir>
45 </properties>
Ian Maxonb165aca2016-03-17 18:21:57 -070046
Michael Blowb4c1fb02016-05-09 15:41:00 -070047 <dependencies>
48 <dependency>
49 <groupId>org.apache.hyracks</groupId>
50 <artifactId>hyracks-storage-am-lsm-invertedindex</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040051 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070052 <type>jar</type>
53 <scope>compile</scope>
54 </dependency>
55 <dependency>
56 <groupId>org.apache.hyracks</groupId>
57 <artifactId>hyracks-test-support</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040058 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070059 <type>jar</type>
60 <scope>test</scope>
61 </dependency>
62 <dependency>
63 <groupId>org.apache.hyracks</groupId>
64 <artifactId>hyracks-data-std</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040065 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070066 <type>jar</type>
67 <scope>test</scope>
68 </dependency>
69 <dependency>
70 <groupId>org.apache.hyracks</groupId>
71 <artifactId>hyracks-util</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040072 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070073 <type>test-jar</type>
74 <scope>test</scope>
75 </dependency>
76 </dependencies>
Ian Maxon5ae0df82015-10-14 10:45:19 -070077
Ian Maxon9e37c962015-11-25 07:38:37 -080078</project>