blob: fba9d2ce8cb24a09b80bfab7fcad5b1b6b8e197e [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">
Abdullah Alamoudi0ad2cce2015-12-16 09:04:10 +030020 <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.17-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 <dependencies>
vinayakb0c860392012-10-06 18:47:20 +000037 <dependency>
Abdullah Alamoudi0ad2cce2015-12-16 09:04:10 +030038 <groupId>org.apache.hyracks</groupId>
39 <artifactId>hyracks-storage-common</artifactId>
40 <version>0.2.17-SNAPSHOT</version>
41 <type>jar</type>
42 <scope>compile</scope>
43 </dependency>
44 <dependency>
45 <groupId>org.apache.hyracks</groupId>
46 <artifactId>hyracks-storage-am-common</artifactId>
47 <version>0.2.17-SNAPSHOT</version>
48 <type>jar</type>
49 <scope>compile</scope>
50 </dependency>
51 <dependency>
52 <groupId>org.apache.hyracks</groupId>
53 <artifactId>hyracks-dataflow-common</artifactId>
54 <version>0.2.17-SNAPSHOT</version>
55 <type>jar</type>
56 <scope>compile</scope>
57 </dependency>
58 <dependency>
59 <groupId>org.apache.hyracks</groupId>
60 <artifactId>hyracks-dataflow-std</artifactId>
61 <version>0.2.17-SNAPSHOT</version>
62 <type>jar</type>
63 <scope>compile</scope>
64 </dependency>
65 <dependency>
66 <groupId>org.mockito</groupId>
67 <artifactId>mockito-all</artifactId>
68 <version>2.0.2-beta</version>
69 </dependency>
70 <dependency>
71 <groupId>org.powermock</groupId>
72 <artifactId>powermock-api-mockito</artifactId>
73 <version>1.6.2</version>
74 <scope>test</scope>
75 </dependency>
76 <dependency>
77 <groupId>org.powermock</groupId>
78 <artifactId>powermock-module-junit4</artifactId>
79 <version>1.6.2</version>
80 <scope>test</scope>
81 </dependency>
82 </dependencies>
83</project>