blob: 50762605ec661cfd73a7c708209a5a3ad47d4565 [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>
AsterixDB Jenkins0948b242017-11-20 15:56:08 -080028 <version>0.3.4-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>
Michael Blowba358122016-10-13 19:56:03 -040035 <groupId>org.apache.commons</groupId>
36 <artifactId>commons-lang3</artifactId>
Michael Blowba358122016-10-13 19:56:03 -040037 </dependency>
38 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -070039 <groupId>org.apache.hyracks</groupId>
40 <artifactId>hyracks-util</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040041 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070042 </dependency>
43 <dependency>
44 <groupId>org.apache.hyracks</groupId>
45 <artifactId>hyracks-api</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040046 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070047 </dependency>
48 <dependency>
49 <groupId>org.apache.hyracks</groupId>
50 <artifactId>hyracks-util</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040051 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070052 <type>test-jar</type>
53 <scope>test</scope>
54 </dependency>
Murtadha Hubail11f7c342018-07-15 10:55:47 +030055 <dependency>
56 <groupId>com.fasterxml.jackson.core</groupId>
57 <artifactId>jackson-databind</artifactId>
58 </dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -070059 </dependencies>
vinayakb0c860392012-10-06 18:47:20 +000060</project>