blob: 573656f0ddf305ab7e762666f517dcfb0d94690d [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 !-->
Abdullah Alamoudi735532e2017-05-11 13:58:53 -070019<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 Blowb4c1fb02016-05-09 15:41:00 -070021 <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>
Ian Maxon4f3e48f2023-03-14 20:12:58 -070027 <version>0.3.9-SNAPSHOT</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070028 </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 Alamoudi803a3a22016-05-19 14:26:09 -070043 <artifactId>hyracks-api</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040044 <version>${project.version}</version>
Abdullah Alamoudi803a3a22016-05-19 14:26:09 -070045 <type>test-jar</type>
Michael Blow2da62dc2016-06-30 21:18:37 -040046 <scope>test</scope>
Abdullah Alamoudi803a3a22016-05-19 14:26:09 -070047 </dependency>
48 <dependency>
49 <groupId>org.apache.hyracks</groupId>
Michael Blowb4c1fb02016-05-09 15:41:00 -070050 <artifactId>hyracks-storage-common</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040051 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070052 </dependency>
53 <dependency>
54 <groupId>org.apache.hyracks</groupId>
55 <artifactId>hyracks-storage-am-common</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040056 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070057 </dependency>
58 <dependency>
59 <groupId>org.apache.hyracks</groupId>
60 <artifactId>hyracks-dataflow-common</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040061 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070062 </dependency>
63 <dependency>
64 <groupId>org.apache.hyracks</groupId>
65 <artifactId>hyracks-dataflow-std</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040066 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070067 </dependency>
68 <dependency>
69 <groupId>org.mockito</groupId>
Ian Maxon4889f6b2021-05-05 02:08:27 -070070 <artifactId>mockito-core</artifactId>
Michael Blow2da62dc2016-06-30 21:18:37 -040071 <scope>test</scope>
Michael Blowb4c1fb02016-05-09 15:41:00 -070072 </dependency>
73 <dependency>
74 <groupId>org.powermock</groupId>
Ian Maxon4889f6b2021-05-05 02:08:27 -070075 <artifactId>powermock-api-mockito2</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -070076 <scope>test</scope>
77 </dependency>
78 <dependency>
79 <groupId>org.powermock</groupId>
80 <artifactId>powermock-module-junit4</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -070081 <scope>test</scope>
82 </dependency>
Michael Blowba358122016-10-13 19:56:03 -040083 <dependency>
84 <groupId>org.powermock</groupId>
85 <artifactId>powermock-core</artifactId>
Michael Blowba358122016-10-13 19:56:03 -040086 <scope>test</scope>
87 </dependency>
88 <dependency>
89 <groupId>org.apache.hyracks</groupId>
90 <artifactId>hyracks-api</artifactId>
91 <version>${project.version}</version>
92 </dependency>
93 <dependency>
94 <groupId>junit</groupId>
95 <artifactId>junit</artifactId>
Michael Blowba358122016-10-13 19:56:03 -040096 <scope>test</scope>
97 </dependency>
98 <dependency>
99 <groupId>org.apache.hyracks</groupId>
100 <artifactId>hyracks-data-std</artifactId>
101 <version>${project.version}</version>
102 </dependency>
Abdullah Alamoudi735532e2017-05-11 13:58:53 -0700103 <dependency>
104 <groupId>org.apache.commons</groupId>
105 <artifactId>commons-lang3</artifactId>
106 </dependency>
Murtadha Hubailb1ae88e2020-10-31 23:35:56 +0300107 <dependency>
108 <groupId>com.fasterxml.jackson.core</groupId>
109 <artifactId>jackson-databind</artifactId>
110 </dependency>
111 <dependency>
112 <groupId>org.apache.logging.log4j</groupId>
113 <artifactId>log4j-api</artifactId>
114 </dependency>
115 <dependency>
116 <groupId>org.apache.hyracks</groupId>
117 <artifactId>hyracks-util</artifactId>
118 <version>${project.version}</version>
119 </dependency>
Ali Alsulimanafb22b32023-05-05 12:09:47 -0700120 <dependency>
121 <groupId>org.apache.hyracks</groupId>
122 <artifactId>hyracks-util</artifactId>
123 <version>${project.version}</version>
124 <type>test-jar</type>
125 <scope>test</scope>
126 </dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700127 </dependencies>
Abdullah Alamoudi735532e2017-05-11 13:58:53 -0700128</project>