blob: 6ff2ef6e8e1c4ccfb79a57be61a5e1f4fde431a6 [file] [log] [blame]
Wail Alkowaileet436b78e2024-04-18 13:19:10 -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"
20 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-cloud</artifactId>
23 <parent>
24 <groupId>org.apache.hyracks</groupId>
25 <artifactId>hyracks</artifactId>
26 <version>0.3.10-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 <jnr-posix.version>3.1.19</jnr-posix.version>
39 <jnr-ffi.version>2.2.16</jnr-ffi.version>
40 </properties>
41 <dependencies>
42 <dependency>
43 <groupId>org.apache.hyracks</groupId>
44 <artifactId>hyracks-api</artifactId>
45 <version>${project.version}</version>
46 </dependency>
47 <dependency>
48 <groupId>org.apache.hyracks</groupId>
49 <artifactId>hyracks-storage-common</artifactId>
50 <version>${project.version}</version>
51 </dependency>
52 <dependency>
53 <groupId>org.apache.hyracks</groupId>
54 <artifactId>hyracks-storage-am-lsm-common</artifactId>
55 <version>${project.version}</version>
56 </dependency>
57 <dependency>
58 <groupId>org.apache.hyracks</groupId>
59 <artifactId>hyracks-control-nc</artifactId>
60 <version>${project.version}</version>
61 </dependency>
62 <dependency>
63 <groupId>org.apache.hyracks</groupId>
64 <artifactId>hyracks-util</artifactId>
65 <version>${project.version}</version>
66 </dependency>
67 <dependency>
68 <groupId>it.unimi.dsi</groupId>
69 <artifactId>fastutil-core</artifactId>
70 </dependency>
71 <dependency>
72 <groupId>com.github.jnr</groupId>
73 <artifactId>jnr-posix</artifactId>
74 <version>${jnr-posix.version}</version>
75 </dependency>
76 <dependency>
77 <groupId>com.github.jnr</groupId>
78 <artifactId>jnr-ffi</artifactId>
79 <version>${jnr-ffi.version}</version>
80 </dependency>
81 <dependency>
82 <groupId>junit</groupId>
83 <artifactId>junit</artifactId>
84 <scope>test</scope>
85 </dependency>
86 <dependency>
87 <groupId>org.apache.logging.log4j</groupId>
88 <artifactId>log4j-api</artifactId>
89 </dependency>
90 </dependencies>
91</project>