Till Westmann | 276bbc2 | 2013-06-05 18:56:27 -0700 | [diff] [blame] | 1 | <!-- |
Ian Maxon | d885779 | 2015-09-11 14:19:53 -0700 | [diff] [blame] | 2 | ! 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 Westmann | 276bbc2 | 2013-06-05 18:56:27 -0700 | [diff] [blame] | 18 | !--> |
Ian Maxon | d885779 | 2015-09-11 14:19:53 -0700 | [diff] [blame] | 19 | |
Michael Blow | 380b0a2 | 2016-08-02 13:05:52 -0400 | [diff] [blame] | 20 | <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 Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 21 | <modelVersion>4.0.0</modelVersion> |
| 22 | <artifactId>hyracks-storage-am-lsm-invertedindex-test</artifactId> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 23 | |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 24 | <parent> |
| 25 | <artifactId>hyracks-tests</artifactId> |
| 26 | <groupId>org.apache.hyracks</groupId> |
Ian Maxon | 2f87c8d | 2023-05-01 18:04:39 -0700 | [diff] [blame^] | 27 | <version>0.3.8.1</version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 28 | <relativePath>..</relativePath> |
| 29 | </parent> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 30 | |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 31 | <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 Maxon | b165aca | 2016-03-17 18:21:57 -0700 | [diff] [blame] | 45 | |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 46 | <dependencies> |
| 47 | <dependency> |
| 48 | <groupId>org.apache.hyracks</groupId> |
| 49 | <artifactId>hyracks-storage-am-lsm-invertedindex</artifactId> |
Michael Blow | f8a882d | 2016-08-02 01:28:34 -0400 | [diff] [blame] | 50 | <version>${project.version}</version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 51 | </dependency> |
| 52 | <dependency> |
| 53 | <groupId>org.apache.hyracks</groupId> |
| 54 | <artifactId>hyracks-test-support</artifactId> |
Michael Blow | f8a882d | 2016-08-02 01:28:34 -0400 | [diff] [blame] | 55 | <version>${project.version}</version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 56 | <scope>test</scope> |
| 57 | </dependency> |
| 58 | <dependency> |
| 59 | <groupId>org.apache.hyracks</groupId> |
| 60 | <artifactId>hyracks-data-std</artifactId> |
Michael Blow | f8a882d | 2016-08-02 01:28:34 -0400 | [diff] [blame] | 61 | <version>${project.version}</version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 62 | <scope>test</scope> |
| 63 | </dependency> |
| 64 | <dependency> |
| 65 | <groupId>org.apache.hyracks</groupId> |
| 66 | <artifactId>hyracks-util</artifactId> |
Michael Blow | f8a882d | 2016-08-02 01:28:34 -0400 | [diff] [blame] | 67 | <version>${project.version}</version> |
Michael Blow | ba35812 | 2016-10-13 19:56:03 -0400 | [diff] [blame] | 68 | </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 Kim | afe0d3d | 2018-02-18 19:12:08 -0800 | [diff] [blame] | 76 | <artifactId>hyracks-dataflow-std</artifactId> |
| 77 | <version>${project.version}</version> |
| 78 | </dependency> |
| 79 | <dependency> |
| 80 | <groupId>org.apache.hyracks</groupId> |
Michael Blow | ba35812 | 2016-10-13 19:56:03 -0400 | [diff] [blame] | 81 | <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 Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 98 | <scope>test</scope> |
| 99 | </dependency> |
Michael Blow | ba35812 | 2016-10-13 19:56:03 -0400 | [diff] [blame] | 100 | <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 Hubail | af4018d | 2017-12-15 17:56:38 +0300 | [diff] [blame] | 115 | <dependency> |
| 116 | <groupId>org.apache.logging.log4j</groupId> |
| 117 | <artifactId>log4j-api</artifactId> |
| 118 | </dependency> |
Rui Guo | e6986dd | 2020-11-25 19:50:06 -0800 | [diff] [blame] | 119 | <dependency> |
| 120 | <groupId>com.google.guava</groupId> |
| 121 | <artifactId>guava</artifactId> |
| 122 | </dependency> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 123 | </dependencies> |
Ian Maxon | 5ae0df8 | 2015-10-14 10:45:19 -0700 | [diff] [blame] | 124 | |
Ian Maxon | 9e37c96 | 2015-11-25 07:38:37 -0800 | [diff] [blame] | 125 | </project> |