blob: 48f3b33ad06bd3728f26e30f040ec3fa4a6602b9 [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 !-->
Ian Maxond8857792015-09-11 14:19:53 -070019
Michael Blow380b0a22016-08-02 13:05:52 -040020<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">
Michael Blowb4c1fb02016-05-09 15:41:00 -070021 <modelVersion>4.0.0</modelVersion>
22 <artifactId>hyracks-data-std</artifactId>
23 <name>hyracks-data-std</name>
vinayakb0c860392012-10-06 18:47:20 +000024
Michael Blowb4c1fb02016-05-09 15:41:00 -070025 <parent>
26 <groupId>org.apache.hyracks</groupId>
27 <artifactId>hyracks-data</artifactId>
Ian Maxon03ccded2021-03-07 18:35:16 -080028 <version>0.3.7-SNAPSHOT</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070029 </parent>
30 <properties>
31 <root.dir>${basedir}/../../..</root.dir>
32 </properties>
33 <dependencies>
34 <dependency>
35 <groupId>org.apache.hyracks</groupId>
36 <artifactId>hyracks-util</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040037 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070038 </dependency>
39 <dependency>
40 <groupId>org.apache.hyracks</groupId>
41 <artifactId>hyracks-api</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040042 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070043 </dependency>
44 <dependency>
45 <groupId>org.apache.hyracks</groupId>
46 <artifactId>hyracks-util</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040047 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070048 <type>test-jar</type>
49 <scope>test</scope>
50 </dependency>
Murtadha Hubail11f7c342018-07-15 10:55:47 +030051 <dependency>
52 <groupId>com.fasterxml.jackson.core</groupId>
53 <artifactId>jackson-databind</artifactId>
54 </dependency>
Rui Guo4ce394b2020-07-23 07:35:59 -070055 <dependency>
56 <groupId>it.unimi.dsi</groupId>
Michael Blowd821af02021-04-05 09:33:15 -040057 <artifactId>fastutil-core</artifactId>
Rui Guo4ce394b2020-07-23 07:35:59 -070058 </dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -070059 </dependencies>
vinayakb0c860392012-10-06 18:47:20 +000060</project>