blob: 8fccf77aab74a34c8044085a77f021ddceeb5881 [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-2.x</artifactId>
23 <name>hyracks-hdfs-2.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 <property>
38 <name>hadoop</name>
39 <value>2.2.0</value>
40 </property>
41 </activation>
42 <id>hadoop-2.2.0</id>
43 <dependencies>
44 <dependency>
45 <groupId>org.apache.hadoop</groupId>
46 <artifactId>hadoop-common</artifactId>
47 <type>jar</type>
48 <scope>compile</scope>
49 </dependency>
50 <dependency>
51 <groupId>org.apache.hadoop</groupId>
52 <artifactId>hadoop-mapreduce-client-core</artifactId>
53 <type>jar</type>
54 <scope>compile</scope>
55 </dependency>
56 <dependency>
57 <groupId>org.apache.hadoop</groupId>
58 <artifactId>hadoop-hdfs</artifactId>
59 <type>jar</type>
60 <scope>compile</scope>
61 </dependency>
62 <dependency>
63 <groupId>org.apache.hadoop</groupId>
64 <artifactId>hadoop-minicluster</artifactId>
65 <type>jar</type>
66 <scope>compile</scope>
67 </dependency>
68 </dependencies>
69 </profile>
70 <profile>
71 <activation>
72 <activeByDefault>true</activeByDefault>
73 <property>
74 <name>hadoop</name>
75 <value>0.23.1</value>
76 </property>
77 </activation>
78 <id>hadoop-0.23.1</id>
79 <dependencies>
80 <dependency>
81 <groupId>org.apache.hadoop</groupId>
82 <artifactId>hadoop-common</artifactId>
83 <type>jar</type>
84 <scope>compile</scope>
85 </dependency>
86 <dependency>
87 <groupId>org.apache.hadoop</groupId>
88 <artifactId>hadoop-mapreduce-client-core</artifactId>
89 <type>jar</type>
90 <scope>compile</scope>
91 </dependency>
92 <dependency>
93 <groupId>org.apache.hadoop</groupId>
94 <artifactId>hadoop-hdfs</artifactId>
95 <type>jar</type>
96 <scope>compile</scope>
97 </dependency>
98 <dependency>
99 <groupId>org.apache.hadoop</groupId>
100 <artifactId>hadoop-minicluster</artifactId>
101 <type>jar</type>
102 <scope>compile</scope>
103 </dependency>
104 </dependencies>
105 </profile>
106 <profile>
107 <id>hadoop-0.23.6</id>
108 <activation>
109 <activeByDefault>false</activeByDefault>
110 <property>
111 <name>hadoop</name>
112 <value>0.23.6</value>
113 </property>
114 </activation>
115 <dependencies>
116 <dependency>
117 <groupId>org.apache.hadoop</groupId>
118 <artifactId>hadoop-common</artifactId>
119 <version>0.23.6</version>
120 <type>jar</type>
121 <scope>compile</scope>
122 </dependency>
123 <dependency>
124 <groupId>org.apache.hadoop</groupId>
125 <artifactId>hadoop-mapreduce-client-core</artifactId>
126 <version>0.23.6</version>
127 <type>jar</type>
128 <scope>compile</scope>
129 </dependency>
130 <dependency>
131 <groupId>org.apache.hadoop</groupId>
132 <artifactId>hadoop-hdfs</artifactId>
133 <version>0.23.6</version>
134 <type>jar</type>
135 <scope>compile</scope>
136 </dependency>
137 <dependency>
138 <groupId>org.apache.hadoop</groupId>
139 <artifactId>hadoop-minicluster</artifactId>
140 <version>0.23.6</version>
141 <type>jar</type>
142 <scope>compile</scope>
143 </dependency>
144 </dependencies>
145 </profile>
146 <profile>
147 <activation>
148 <activeByDefault>false</activeByDefault>
149 <property>
150 <name>hadoop</name>
151 <value>cdh-4.2</value>
152 </property>
153 </activation>
154 <id>cdh-4.2</id>
155 <dependencies>
156 <dependency>
157 <groupId>org.apache.hadoop</groupId>
158 <artifactId>hadoop-common</artifactId>
159 <version>2.0.0-cdh4.2.0</version>
160 <type>jar</type>
161 <scope>compile</scope>
162 </dependency>
163 <dependency>
164 <groupId>org.apache.hadoop</groupId>
165 <artifactId>hadoop-mapreduce-client-core</artifactId>
166 <version>2.0.0-cdh4.2.0</version>
167 <type>jar</type>
168 <scope>compile</scope>
169 </dependency>
170 <dependency>
171 <groupId>org.apache.hadoop</groupId>
172 <artifactId>hadoop-hdfs</artifactId>
173 <version>2.0.0-cdh4.2.0</version>
174 <type>jar</type>
175 <scope>compile</scope>
176 </dependency>
177 <dependency>
178 <groupId>org.apache.hadoop</groupId>
179 <artifactId>hadoop-minicluster</artifactId>
180 <version>2.0.0-cdh4.2.0</version>
181 <type>jar</type>
182 <scope>compile</scope>
183 </dependency>
184 </dependencies>
185 </profile>
186 <profile>
187 <activation>
188 <activeByDefault>false</activeByDefault>
189 <property>
190 <name>hadoop</name>
191 <value>cdh-4.1</value>
192 </property>
193 </activation>
194 <id>cdh-4.1</id>
195 <dependencies>
196 <dependency>
197 <groupId>org.apache.hadoop</groupId>
198 <artifactId>hadoop-common</artifactId>
199 <version>2.0.0-cdh4.1.0</version>
200 <type>jar</type>
201 <scope>compile</scope>
202 </dependency>
203 <dependency>
204 <groupId>org.apache.hadoop</groupId>
205 <artifactId>hadoop-mapreduce-client-core</artifactId>
206 <version>2.0.0-cdh4.1.0</version>
207 <type>jar</type>
208 <scope>compile</scope>
209 </dependency>
210 <dependency>
211 <groupId>org.apache.hadoop</groupId>
212 <artifactId>hadoop-hdfs</artifactId>
213 <version>2.0.0-cdh4.1.0</version>
214 <type>jar</type>
215 <scope>compile</scope>
216 </dependency>
217 <dependency>
218 <groupId>org.apache.hadoop</groupId>
219 <artifactId>hadoop-minicluster</artifactId>
220 <version>2.0.0-cdh4.1.0</version>
221 <type>jar</type>
222 <scope>compile</scope>
223 </dependency>
224 </dependencies>
225 </profile>
226 </profiles>
buyingyi55df5212013-03-24 07:20:08 +0000227
Michael Blowb4c1fb02016-05-09 15:41:00 -0700228 <dependencies>
229 <dependency>
230 <groupId>org.apache.hyracks</groupId>
231 <artifactId>hyracks-api</artifactId>
232 <version>0.2.18-SNAPSHOT</version>
233 <type>jar</type>
234 <scope>compile</scope>
235 </dependency>
236 </dependencies>
buyingyi55df5212013-03-24 07:20:08 +0000237
Michael Blowb4c1fb02016-05-09 15:41:00 -0700238 <repositories>
239 <repository>
240 <id>cloudera</id>
241 <url>https://repository.cloudera.com/artifactory/cloudera-repos/</url>
242 </repository>
243 </repositories>
buyingyi55df5212013-03-24 07:20:08 +0000244</project>