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