blob: f11fe673cac1eece81577a22e8f13474f692d4ab [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>
Ian Maxonb165aca2016-03-17 18:21:57 -070026 <version>0.2.18-SNAPSHOT</version>
Abdullah Alamoudi0ad2cce2015-12-16 09:04:10 +030027 </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>
Ian Maxonb165aca2016-03-17 18:21:57 -070036 <properties>
37 <root.dir>${basedir}/../..</root.dir>
38 </properties>
Abdullah Alamoudi0ad2cce2015-12-16 09:04:10 +030039 <dependencies>
vinayakb0c860392012-10-06 18:47:20 +000040 <dependency>
Abdullah Alamoudi0ad2cce2015-12-16 09:04:10 +030041 <groupId>org.apache.hyracks</groupId>
42 <artifactId>hyracks-storage-common</artifactId>
Ian Maxonb165aca2016-03-17 18:21:57 -070043 <version>0.2.18-SNAPSHOT</version>
Abdullah Alamoudi0ad2cce2015-12-16 09:04:10 +030044 <type>jar</type>
45 <scope>compile</scope>
46 </dependency>
47 <dependency>
48 <groupId>org.apache.hyracks</groupId>
49 <artifactId>hyracks-storage-am-common</artifactId>
Ian Maxonb165aca2016-03-17 18:21:57 -070050 <version>0.2.18-SNAPSHOT</version>
Abdullah Alamoudi0ad2cce2015-12-16 09:04:10 +030051 <type>jar</type>
52 <scope>compile</scope>
53 </dependency>
54 <dependency>
55 <groupId>org.apache.hyracks</groupId>
56 <artifactId>hyracks-dataflow-common</artifactId>
Ian Maxonb165aca2016-03-17 18:21:57 -070057 <version>0.2.18-SNAPSHOT</version>
Abdullah Alamoudi0ad2cce2015-12-16 09:04:10 +030058 <type>jar</type>
59 <scope>compile</scope>
60 </dependency>
61 <dependency>
62 <groupId>org.apache.hyracks</groupId>
63 <artifactId>hyracks-dataflow-std</artifactId>
Ian Maxonb165aca2016-03-17 18:21:57 -070064 <version>0.2.18-SNAPSHOT</version>
Abdullah Alamoudi0ad2cce2015-12-16 09:04:10 +030065 <type>jar</type>
66 <scope>compile</scope>
67 </dependency>
68 <dependency>
69 <groupId>org.mockito</groupId>
70 <artifactId>mockito-all</artifactId>
71 <version>2.0.2-beta</version>
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>
85 </dependencies>
vinayakb0c860392012-10-06 18:47:20 +000086</project>