blob: be26125f354158b4d6c994401ed39d46a3c8046e [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 !-->
vinayakb0c860392012-10-06 18:47:20 +000019<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/maven-v4_0_0.xsd">
Michael Blowb4c1fb02016-05-09 15:41:00 -070020 <modelVersion>4.0.0</modelVersion>
21 <artifactId>hyracks-storage-am-btree</artifactId>
22 <name>hyracks-storage-am-btree</name>
23 <parent>
24 <groupId>org.apache.hyracks</groupId>
25 <artifactId>hyracks</artifactId>
26 <version>0.2.18-SNAPSHOT</version>
27 </parent>
28 <licenses>
29 <license>
30 <name>Apache License, Version 2.0</name>
31 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
32 <distribution>repo</distribution>
33 <comments>A business-friendly OSS license</comments>
34 </license>
35 </licenses>
36 <properties>
37 <root.dir>${basedir}/../..</root.dir>
38 </properties>
39 <dependencies>
40 <dependency>
41 <groupId>org.apache.hyracks</groupId>
Abdullah Alamoudi803a3a22016-05-19 14:26:09 -070042 <artifactId>hyracks-api</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040043 <version>${project.version}</version>
Abdullah Alamoudi803a3a22016-05-19 14:26:09 -070044 <type>test-jar</type>
Michael Blow2da62dc2016-06-30 21:18:37 -040045 <scope>test</scope>
Abdullah Alamoudi803a3a22016-05-19 14:26:09 -070046 </dependency>
47 <dependency>
48 <groupId>org.apache.hyracks</groupId>
Michael Blowb4c1fb02016-05-09 15:41:00 -070049 <artifactId>hyracks-storage-common</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-storage-am-common</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>compile</scope>
60 </dependency>
61 <dependency>
62 <groupId>org.apache.hyracks</groupId>
63 <artifactId>hyracks-dataflow-common</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>compile</scope>
67 </dependency>
68 <dependency>
69 <groupId>org.apache.hyracks</groupId>
70 <artifactId>hyracks-dataflow-std</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040071 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070072 <type>jar</type>
73 <scope>compile</scope>
74 </dependency>
75 <dependency>
76 <groupId>org.mockito</groupId>
77 <artifactId>mockito-all</artifactId>
78 <version>2.0.2-beta</version>
Michael Blow2da62dc2016-06-30 21:18:37 -040079 <scope>test</scope>
Michael Blowb4c1fb02016-05-09 15:41:00 -070080 </dependency>
81 <dependency>
82 <groupId>org.powermock</groupId>
83 <artifactId>powermock-api-mockito</artifactId>
84 <version>1.6.2</version>
85 <scope>test</scope>
86 </dependency>
87 <dependency>
88 <groupId>org.powermock</groupId>
89 <artifactId>powermock-module-junit4</artifactId>
90 <version>1.6.2</version>
91 <scope>test</scope>
92 </dependency>
93 </dependencies>
vinayakb0c860392012-10-06 18:47:20 +000094</project>