blob: 1ec9c85b50913e45974d85f14dd726a5548537fb [file] [log] [blame]
buyingyi55df5212013-03-24 07:20:08 +00001<?xml version="1.0"?>
Till Westmann276bbc22013-06-05 18:56:27 -07002<!--
Ian Maxond8857792015-09-11 14:19:53 -07003 ! Licensed to the Apache Software Foundation (ASF) under one
4 ! or more contributor license agreements. See the NOTICE file
5 ! distributed with this work for additional information
6 ! regarding copyright ownership. The ASF licenses this file
7 ! to you under the Apache License, Version 2.0 (the
8 ! "License"); you may not use this file except in compliance
9 ! with the License. You may obtain a copy of the License at
10 !
11 ! http://www.apache.org/licenses/LICENSE-2.0
12 !
13 ! Unless required by applicable law or agreed to in writing,
14 ! software distributed under the License is distributed on an
15 ! "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 ! KIND, either express or implied. See the License for the
17 ! specific language governing permissions and limitations
18 ! under the License.
Till Westmann276bbc22013-06-05 18:56:27 -070019 !-->
Ian Maxond8857792015-09-11 14:19:53 -070020
vinayakb1ca34f42013-03-25 03:17:01 +000021<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 +000022 <modelVersion>4.0.0</modelVersion>
Ianeee859a2014-09-21 18:26:49 -070023 <artifactId>hyracks-hdfs-2.x</artifactId>
24 <name>hyracks-hdfs-2.x</name>
buyingyi55df5212013-03-24 07:20:08 +000025 <parent>
26 <artifactId>hyracks-hdfs</artifactId>
Ian Maxone915e8c2015-07-01 17:03:31 -070027 <groupId>org.apache.hyracks</groupId>
Ian Maxond4daeb42015-09-15 14:31:32 -070028 <version>0.2.17-SNAPSHOT</version>
buyingyi55df5212013-03-24 07:20:08 +000029 </parent>
30 <build>
31 <plugins>
32 <plugin>
33 <groupId>org.apache.maven.plugins</groupId>
34 <artifactId>maven-compiler-plugin</artifactId>
35 <version>2.0.2</version>
36 <configuration>
37 <source>1.7</source>
38 <target>1.7</target>
39 <fork>true</fork>
40 </configuration>
41 </plugin>
buyingyi55df5212013-03-24 07:20:08 +000042 </plugins>
43 </build>
44
45 <profiles>
46 <profile>
47 <activation>
48 <activeByDefault>true</activeByDefault>
49 <property>
50 <name>hadoop</name>
Ianeee859a2014-09-21 18:26:49 -070051 <value>2.2.0</value>
52 </property>
53 </activation>
54 <id>hadoop-2.2.0</id>
55 <dependencies>
56 <dependency>
57 <groupId>org.apache.hadoop</groupId>
58 <artifactId>hadoop-common</artifactId>
59 <type>jar</type>
60 <scope>compile</scope>
61 </dependency>
62 <dependency>
63 <groupId>org.apache.hadoop</groupId>
64 <artifactId>hadoop-mapreduce-client-core</artifactId>
65 <type>jar</type>
66 <scope>compile</scope>
67 </dependency>
68 <dependency>
69 <groupId>org.apache.hadoop</groupId>
70 <artifactId>hadoop-hdfs</artifactId>
71 <type>jar</type>
72 <scope>compile</scope>
73 </dependency>
74 <dependency>
75 <groupId>org.apache.hadoop</groupId>
76 <artifactId>hadoop-minicluster</artifactId>
77 <type>jar</type>
78 <scope>compile</scope>
79 </dependency>
80 </dependencies>
81 </profile>
82 <profile>
83 <activation>
84 <activeByDefault>true</activeByDefault>
85 <property>
86 <name>hadoop</name>
buyingyi55df5212013-03-24 07:20:08 +000087 <value>0.23.1</value>
88 </property>
89 </activation>
90 <id>hadoop-0.23.1</id>
91 <dependencies>
92 <dependency>
93 <groupId>org.apache.hadoop</groupId>
94 <artifactId>hadoop-common</artifactId>
buyingyi55df5212013-03-24 07:20:08 +000095 <type>jar</type>
96 <scope>compile</scope>
97 </dependency>
98 <dependency>
99 <groupId>org.apache.hadoop</groupId>
100 <artifactId>hadoop-mapreduce-client-core</artifactId>
buyingyi55df5212013-03-24 07:20:08 +0000101 <type>jar</type>
102 <scope>compile</scope>
103 </dependency>
104 <dependency>
105 <groupId>org.apache.hadoop</groupId>
106 <artifactId>hadoop-hdfs</artifactId>
buyingyi55df5212013-03-24 07:20:08 +0000107 <type>jar</type>
108 <scope>compile</scope>
109 </dependency>
110 <dependency>
111 <groupId>org.apache.hadoop</groupId>
112 <artifactId>hadoop-minicluster</artifactId>
buyingyi55df5212013-03-24 07:20:08 +0000113 <type>jar</type>
114 <scope>compile</scope>
115 </dependency>
116 </dependencies>
117 </profile>
118 <profile>
119 <id>hadoop-0.23.6</id>
120 <activation>
121 <activeByDefault>false</activeByDefault>
122 <property>
123 <name>hadoop</name>
124 <value>0.23.6</value>
125 </property>
126 </activation>
127 <dependencies>
128 <dependency>
129 <groupId>org.apache.hadoop</groupId>
130 <artifactId>hadoop-common</artifactId>
131 <version>0.23.6</version>
132 <type>jar</type>
133 <scope>compile</scope>
134 </dependency>
135 <dependency>
136 <groupId>org.apache.hadoop</groupId>
137 <artifactId>hadoop-mapreduce-client-core</artifactId>
138 <version>0.23.6</version>
139 <type>jar</type>
140 <scope>compile</scope>
141 </dependency>
142 <dependency>
143 <groupId>org.apache.hadoop</groupId>
144 <artifactId>hadoop-hdfs</artifactId>
145 <version>0.23.6</version>
146 <type>jar</type>
147 <scope>compile</scope>
148 </dependency>
149 <dependency>
150 <groupId>org.apache.hadoop</groupId>
151 <artifactId>hadoop-minicluster</artifactId>
152 <version>0.23.6</version>
153 <type>jar</type>
154 <scope>compile</scope>
155 </dependency>
156 </dependencies>
157 </profile>
158 <profile>
159 <activation>
160 <activeByDefault>false</activeByDefault>
161 <property>
162 <name>hadoop</name>
163 <value>cdh-4.2</value>
164 </property>
165 </activation>
166 <id>cdh-4.2</id>
167 <dependencies>
168 <dependency>
169 <groupId>org.apache.hadoop</groupId>
170 <artifactId>hadoop-common</artifactId>
171 <version>2.0.0-cdh4.2.0</version>
172 <type>jar</type>
173 <scope>compile</scope>
174 </dependency>
175 <dependency>
176 <groupId>org.apache.hadoop</groupId>
177 <artifactId>hadoop-mapreduce-client-core</artifactId>
178 <version>2.0.0-cdh4.2.0</version>
179 <type>jar</type>
180 <scope>compile</scope>
181 </dependency>
182 <dependency>
183 <groupId>org.apache.hadoop</groupId>
184 <artifactId>hadoop-hdfs</artifactId>
185 <version>2.0.0-cdh4.2.0</version>
186 <type>jar</type>
187 <scope>compile</scope>
188 </dependency>
189 <dependency>
190 <groupId>org.apache.hadoop</groupId>
191 <artifactId>hadoop-minicluster</artifactId>
192 <version>2.0.0-cdh4.2.0</version>
193 <type>jar</type>
194 <scope>compile</scope>
195 </dependency>
196 </dependencies>
197 </profile>
198 <profile>
199 <activation>
200 <activeByDefault>false</activeByDefault>
201 <property>
202 <name>hadoop</name>
203 <value>cdh-4.1</value>
204 </property>
205 </activation>
206 <id>cdh-4.1</id>
207 <dependencies>
208 <dependency>
209 <groupId>org.apache.hadoop</groupId>
210 <artifactId>hadoop-common</artifactId>
211 <version>2.0.0-cdh4.1.0</version>
212 <type>jar</type>
213 <scope>compile</scope>
214 </dependency>
215 <dependency>
216 <groupId>org.apache.hadoop</groupId>
217 <artifactId>hadoop-mapreduce-client-core</artifactId>
218 <version>2.0.0-cdh4.1.0</version>
219 <type>jar</type>
220 <scope>compile</scope>
221 </dependency>
222 <dependency>
223 <groupId>org.apache.hadoop</groupId>
224 <artifactId>hadoop-hdfs</artifactId>
225 <version>2.0.0-cdh4.1.0</version>
226 <type>jar</type>
227 <scope>compile</scope>
228 </dependency>
229 <dependency>
230 <groupId>org.apache.hadoop</groupId>
231 <artifactId>hadoop-minicluster</artifactId>
232 <version>2.0.0-cdh4.1.0</version>
233 <type>jar</type>
234 <scope>compile</scope>
235 </dependency>
236 </dependencies>
237 </profile>
238 </profiles>
239
240 <dependencies>
241 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -0700242 <groupId>org.apache.hyracks</groupId>
buyingyi55df5212013-03-24 07:20:08 +0000243 <artifactId>hyracks-api</artifactId>
Ian Maxond4daeb42015-09-15 14:31:32 -0700244 <version>0.2.17-SNAPSHOT</version>
buyingyi55df5212013-03-24 07:20:08 +0000245 <type>jar</type>
246 <scope>compile</scope>
247 </dependency>
248 </dependencies>
249
250 <repositories>
251 <repository>
252 <id>cloudera</id>
253 <url>https://repository.cloudera.com/artifactory/cloudera-repos/</url>
254 </repository>
255 </repositories>
256</project>