blob: 24c1d4e3fabf7d7cbd2a9cfdacd3f9e7151b3cdd [file] [log] [blame]
Wail Alkowaileet511015e2022-09-08 16:42:57 -07001<!--
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.
18 !-->
19<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Wail Alkowaileet15f2c8b2022-10-05 15:06:09 -070020 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
21 <modelVersion>4.0.0</modelVersion>
22 <artifactId>hyracks-storage-am-lsm-btree-column</artifactId>
23 <parent>
24 <groupId>org.apache.hyracks</groupId>
25 <artifactId>hyracks</artifactId>
Ian Maxonbf0abd42024-03-05 11:26:12 -080026 <version>0.3.8.3-SNAPSHOT</version>
Wail Alkowaileet15f2c8b2022-10-05 15:06:09 -070027 </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>
42 <artifactId>hyracks-storage-am-btree</artifactId>
43 <version>${project.version}</version>
44 </dependency>
45 <dependency>
46 <groupId>org.apache.hyracks</groupId>
47 <artifactId>hyracks-storage-am-lsm-btree</artifactId>
48 <version>${project.version}</version>
49 </dependency>
50 <dependency>
51 <groupId>org.apache.hyracks</groupId>
52 <artifactId>hyracks-storage-am-bloomfilter</artifactId>
53 <version>${project.version}</version>
54 </dependency>
55 <dependency>
56 <groupId>org.apache.hyracks</groupId>
57 <artifactId>hyracks-storage-am-lsm-common</artifactId>
58 <version>${project.version}</version>
59 </dependency>
60 <dependency>
61 <groupId>org.apache.hyracks</groupId>
62 <artifactId>hyracks-dataflow-common</artifactId>
63 <version>${project.version}</version>
64 </dependency>
65 <dependency>
66 <groupId>org.apache.hyracks</groupId>
67 <artifactId>hyracks-storage-am-common</artifactId>
68 <version>${project.version}</version>
69 </dependency>
70 <dependency>
71 <groupId>org.apache.hyracks</groupId>
72 <artifactId>hyracks-api</artifactId>
73 <version>${project.version}</version>
74 </dependency>
75 <dependency>
76 <groupId>org.apache.hyracks</groupId>
77 <artifactId>hyracks-storage-common</artifactId>
78 <version>${project.version}</version>
79 </dependency>
80 <dependency>
81 <groupId>org.apache.hyracks</groupId>
82 <artifactId>hyracks-data-std</artifactId>
83 <version>${project.version}</version>
84 </dependency>
85 <dependency>
86 <groupId>org.apache.hyracks</groupId>
87 <artifactId>hyracks-util</artifactId>
88 <version>${project.version}</version>
89 </dependency>
90 </dependencies>
Wail Alkowaileet511015e2022-09-08 16:42:57 -070091</project>