blob: 4804393f5333841df7cc46983fd6928ad24f9160 [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
vinayakb1ca34f42013-03-25 03:17:01 +000020<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/xsd/maven-4.0.0.xsd">
buyingyi55df5212013-03-24 07:20:08 +000021 <modelVersion>4.0.0</modelVersion>
Ianeee859a2014-09-21 18:26:49 -070022 <artifactId>hyracks-hdfs-1.x</artifactId>
23 <name>hyracks-hdfs-1.x</name>
buyingyi55df5212013-03-24 07:20:08 +000024 <parent>
25 <artifactId>hyracks-hdfs</artifactId>
Ian Maxone915e8c2015-07-01 17:03:31 -070026 <groupId>org.apache.hyracks</groupId>
Ian Maxon14be9462016-02-10 14:55:42 -080027 <version>0.2.18-SNAPSHOT</version>
buyingyi55df5212013-03-24 07:20:08 +000028 </parent>
Ian Maxon9e37c962015-11-25 07:38:37 -080029 <properties>
30 <root.dir>${basedir}/../../..</root.dir>
31 </properties>
buyingyi55df5212013-03-24 07:20:08 +000032
33 <profiles>
34 <profile>
35 <activation>
36 <activeByDefault>true</activeByDefault>
37 </activation>
38 <id>hadoop-0.20.2</id>
39 <dependencies>
40 <dependency>
41 <groupId>org.apache.hadoop</groupId>
42 <artifactId>hadoop-core</artifactId>
43 <version>0.20.2</version>
44 <type>jar</type>
45 <scope>compile</scope>
46 </dependency>
47 <dependency>
48 <groupId>org.apache.hadoop</groupId>
49 <artifactId>hadoop-test</artifactId>
50 <version>0.20.2</version>
51 <type>jar</type>
52 <scope>compile</scope>
53 </dependency>
54 </dependencies>
55 </profile>
56 <profile>
57 <activation>
58 <activeByDefault>false</activeByDefault>
59 <property>
60 <name>hadoop</name>
61 <value>1.0.4</value>
62 </property>
63 </activation>
64 <id>hadoop-1.0.4</id>
65 <dependencies>
66 <dependency>
67 <groupId>org.apache.hadoop</groupId>
68 <artifactId>hadoop-core</artifactId>
69 <version>1.0.4</version>
70 <type>jar</type>
71 <scope>compile</scope>
72 </dependency>
73 <dependency>
74 <groupId>org.apache.hadoop</groupId>
75 <artifactId>hadoop-minicluster</artifactId>
76 <version>1.0.4</version>
77 <type>jar</type>
78 <scope>compile</scope>
79 </dependency>
80 <dependency>
81 <groupId>org.apache.hadoop</groupId>
82 <artifactId>hadoop-test</artifactId>
83 <version>1.0.4</version>
84 <type>jar</type>
85 <scope>compile</scope>
86 </dependency>
87 </dependencies>
88 </profile>
89 </profiles>
90
91 <dependencies>
92 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -070093 <groupId>org.apache.hyracks</groupId>
buyingyi55df5212013-03-24 07:20:08 +000094 <artifactId>hyracks-api</artifactId>
Ian Maxon14be9462016-02-10 14:55:42 -080095 <version>0.2.18-SNAPSHOT</version>
buyingyi55df5212013-03-24 07:20:08 +000096 <type>jar</type>
97 <scope>compile</scope>
98 </dependency>
99 </dependencies>
100</project>