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 | !--> |
Abdullah Alamoudi | 735532e | 2017-05-11 13:58:53 -0700 | [diff] [blame] | 19 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 20 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_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-btree</artifactId> |
| 23 | <name>hyracks-storage-am-btree</name> |
| 24 | <parent> |
| 25 | <groupId>org.apache.hyracks</groupId> |
| 26 | <artifactId>hyracks</artifactId> |
AsterixDB Jenkins | 478eccb | 2018-08-31 14:57:31 -0700 | [diff] [blame] | 27 | <version>0.3.5-SNAPSHOT</version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 28 | </parent> |
| 29 | <licenses> |
| 30 | <license> |
| 31 | <name>Apache License, Version 2.0</name> |
| 32 | <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 33 | <distribution>repo</distribution> |
| 34 | <comments>A business-friendly OSS license</comments> |
| 35 | </license> |
| 36 | </licenses> |
| 37 | <properties> |
| 38 | <root.dir>${basedir}/../..</root.dir> |
| 39 | </properties> |
| 40 | <dependencies> |
| 41 | <dependency> |
| 42 | <groupId>org.apache.hyracks</groupId> |
Abdullah Alamoudi | 803a3a2 | 2016-05-19 14:26:09 -0700 | [diff] [blame] | 43 | <artifactId>hyracks-api</artifactId> |
Michael Blow | f8a882d | 2016-08-02 01:28:34 -0400 | [diff] [blame] | 44 | <version>${project.version}</version> |
Abdullah Alamoudi | 803a3a2 | 2016-05-19 14:26:09 -0700 | [diff] [blame] | 45 | <type>test-jar</type> |
Michael Blow | 2da62dc | 2016-06-30 21:18:37 -0400 | [diff] [blame] | 46 | <scope>test</scope> |
Abdullah Alamoudi | 803a3a2 | 2016-05-19 14:26:09 -0700 | [diff] [blame] | 47 | </dependency> |
| 48 | <dependency> |
| 49 | <groupId>org.apache.hyracks</groupId> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 50 | <artifactId>hyracks-storage-common</artifactId> |
Michael Blow | f8a882d | 2016-08-02 01:28:34 -0400 | [diff] [blame] | 51 | <version>${project.version}</version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 52 | </dependency> |
| 53 | <dependency> |
| 54 | <groupId>org.apache.hyracks</groupId> |
| 55 | <artifactId>hyracks-storage-am-common</artifactId> |
Michael Blow | f8a882d | 2016-08-02 01:28:34 -0400 | [diff] [blame] | 56 | <version>${project.version}</version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 57 | </dependency> |
| 58 | <dependency> |
| 59 | <groupId>org.apache.hyracks</groupId> |
| 60 | <artifactId>hyracks-dataflow-common</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 | </dependency> |
| 63 | <dependency> |
| 64 | <groupId>org.apache.hyracks</groupId> |
| 65 | <artifactId>hyracks-dataflow-std</artifactId> |
Michael Blow | f8a882d | 2016-08-02 01:28:34 -0400 | [diff] [blame] | 66 | <version>${project.version}</version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 67 | </dependency> |
| 68 | <dependency> |
| 69 | <groupId>org.mockito</groupId> |
| 70 | <artifactId>mockito-all</artifactId> |
Michael Blow | 2da62dc | 2016-06-30 21:18:37 -0400 | [diff] [blame] | 71 | <scope>test</scope> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 72 | </dependency> |
| 73 | <dependency> |
| 74 | <groupId>org.powermock</groupId> |
| 75 | <artifactId>powermock-api-mockito</artifactId> |
| 76 | <version>1.6.2</version> |
| 77 | <scope>test</scope> |
| 78 | </dependency> |
| 79 | <dependency> |
| 80 | <groupId>org.powermock</groupId> |
| 81 | <artifactId>powermock-module-junit4</artifactId> |
| 82 | <version>1.6.2</version> |
| 83 | <scope>test</scope> |
| 84 | </dependency> |
Michael Blow | ba35812 | 2016-10-13 19:56:03 -0400 | [diff] [blame] | 85 | <dependency> |
| 86 | <groupId>org.powermock</groupId> |
| 87 | <artifactId>powermock-core</artifactId> |
| 88 | <version>1.6.2</version> |
| 89 | <scope>test</scope> |
| 90 | </dependency> |
| 91 | <dependency> |
| 92 | <groupId>org.apache.hyracks</groupId> |
| 93 | <artifactId>hyracks-api</artifactId> |
| 94 | <version>${project.version}</version> |
| 95 | </dependency> |
| 96 | <dependency> |
| 97 | <groupId>junit</groupId> |
| 98 | <artifactId>junit</artifactId> |
Michael Blow | ba35812 | 2016-10-13 19:56:03 -0400 | [diff] [blame] | 99 | <scope>test</scope> |
| 100 | </dependency> |
| 101 | <dependency> |
| 102 | <groupId>org.apache.hyracks</groupId> |
| 103 | <artifactId>hyracks-data-std</artifactId> |
| 104 | <version>${project.version}</version> |
| 105 | </dependency> |
Abdullah Alamoudi | 735532e | 2017-05-11 13:58:53 -0700 | [diff] [blame] | 106 | <dependency> |
| 107 | <groupId>org.apache.commons</groupId> |
| 108 | <artifactId>commons-lang3</artifactId> |
| 109 | </dependency> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 110 | </dependencies> |
Abdullah Alamoudi | 735532e | 2017-05-11 13:58:53 -0700 | [diff] [blame] | 111 | </project> |