blob: b484049f286ca2d742c6e8b376a3aab69cebb362 [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 Maxond4daeb42015-09-15 14:31:32 -070027 <version>0.2.17-SNAPSHOT</version>
buyingyi55df5212013-03-24 07:20:08 +000028 </parent>
29
Ian Maxon5ae0df82015-10-14 10:45:19 -070030
buyingyi55df5212013-03-24 07:20:08 +000031
32 <profiles>
33 <profile>
34 <activation>
35 <activeByDefault>true</activeByDefault>
36 </activation>
37 <id>hadoop-0.20.2</id>
38 <dependencies>
39 <dependency>
40 <groupId>org.apache.hadoop</groupId>
41 <artifactId>hadoop-core</artifactId>
42 <version>0.20.2</version>
43 <type>jar</type>
44 <scope>compile</scope>
45 </dependency>
46 <dependency>
47 <groupId>org.apache.hadoop</groupId>
48 <artifactId>hadoop-test</artifactId>
49 <version>0.20.2</version>
50 <type>jar</type>
51 <scope>compile</scope>
52 </dependency>
53 </dependencies>
54 </profile>
55 <profile>
56 <activation>
57 <activeByDefault>false</activeByDefault>
58 <property>
59 <name>hadoop</name>
60 <value>1.0.4</value>
61 </property>
62 </activation>
63 <id>hadoop-1.0.4</id>
64 <dependencies>
65 <dependency>
66 <groupId>org.apache.hadoop</groupId>
67 <artifactId>hadoop-core</artifactId>
68 <version>1.0.4</version>
69 <type>jar</type>
70 <scope>compile</scope>
71 </dependency>
72 <dependency>
73 <groupId>org.apache.hadoop</groupId>
74 <artifactId>hadoop-minicluster</artifactId>
75 <version>1.0.4</version>
76 <type>jar</type>
77 <scope>compile</scope>
78 </dependency>
79 <dependency>
80 <groupId>org.apache.hadoop</groupId>
81 <artifactId>hadoop-test</artifactId>
82 <version>1.0.4</version>
83 <type>jar</type>
84 <scope>compile</scope>
85 </dependency>
86 </dependencies>
87 </profile>
88 </profiles>
89
90 <dependencies>
91 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -070092 <groupId>org.apache.hyracks</groupId>
buyingyi55df5212013-03-24 07:20:08 +000093 <artifactId>hyracks-api</artifactId>
Ian Maxond4daeb42015-09-15 14:31:32 -070094 <version>0.2.17-SNAPSHOT</version>
buyingyi55df5212013-03-24 07:20:08 +000095 <type>jar</type>
96 <scope>compile</scope>
97 </dependency>
98 </dependencies>
99</project>