blob: 95d3a2ea1715a50e2cf8b3d06213a5ab6d253e8f [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">
Michael Blowb4c1fb02016-05-09 15:41:00 -070021 <modelVersion>4.0.0</modelVersion>
22 <artifactId>hyracks-hdfs-1.x</artifactId>
23 <name>hyracks-hdfs-1.x</name>
24 <parent>
25 <artifactId>hyracks-hdfs</artifactId>
26 <groupId>org.apache.hyracks</groupId>
27 <version>0.2.18-SNAPSHOT</version>
28 </parent>
29 <properties>
30 <root.dir>${basedir}/../../..</root.dir>
31 </properties>
buyingyi55df5212013-03-24 07:20:08 +000032
Michael Blowb4c1fb02016-05-09 15:41:00 -070033 <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>
buyingyi55df5212013-03-24 07:20:08 +000090
Michael Blowb4c1fb02016-05-09 15:41:00 -070091 <dependencies>
92 <dependency>
93 <groupId>org.apache.hyracks</groupId>
94 <artifactId>hyracks-api</artifactId>
95 <version>0.2.18-SNAPSHOT</version>
96 <type>jar</type>
97 <scope>compile</scope>
98 </dependency>
99 </dependencies>
buyingyi55df5212013-03-24 07:20:08 +0000100</project>