blob: 62c6957b3c6edd551b0f7be2931a0eba656434f3 [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 Maxonfe7d5512016-02-02 10:38:56 -080028 <version>0.2.17-incubating</version>
buyingyi55df5212013-03-24 07:20:08 +000029 </parent>
Ian Maxon9e37c962015-11-25 07:38:37 -080030 <properties>
31 <root.dir>${basedir}/../../..</root.dir>
32 </properties>
buyingyi55df5212013-03-24 07:20:08 +000033 <build>
34 <plugins>
35 <plugin>
36 <groupId>org.apache.maven.plugins</groupId>
37 <artifactId>maven-compiler-plugin</artifactId>
38 <version>2.0.2</version>
39 <configuration>
40 <source>1.7</source>
41 <target>1.7</target>
42 <fork>true</fork>
43 </configuration>
44 </plugin>
buyingyi55df5212013-03-24 07:20:08 +000045 </plugins>
46 </build>
47
48 <profiles>
49 <profile>
50 <activation>
51 <activeByDefault>true</activeByDefault>
52 <property>
53 <name>hadoop</name>
Ianeee859a2014-09-21 18:26:49 -070054 <value>2.2.0</value>
55 </property>
56 </activation>
57 <id>hadoop-2.2.0</id>
58 <dependencies>
59 <dependency>
60 <groupId>org.apache.hadoop</groupId>
61 <artifactId>hadoop-common</artifactId>
62 <type>jar</type>
63 <scope>compile</scope>
64 </dependency>
65 <dependency>
66 <groupId>org.apache.hadoop</groupId>
67 <artifactId>hadoop-mapreduce-client-core</artifactId>
68 <type>jar</type>
69 <scope>compile</scope>
70 </dependency>
71 <dependency>
72 <groupId>org.apache.hadoop</groupId>
73 <artifactId>hadoop-hdfs</artifactId>
74 <type>jar</type>
75 <scope>compile</scope>
76 </dependency>
77 <dependency>
78 <groupId>org.apache.hadoop</groupId>
79 <artifactId>hadoop-minicluster</artifactId>
80 <type>jar</type>
81 <scope>compile</scope>
82 </dependency>
83 </dependencies>
84 </profile>
85 <profile>
86 <activation>
87 <activeByDefault>true</activeByDefault>
88 <property>
89 <name>hadoop</name>
buyingyi55df5212013-03-24 07:20:08 +000090 <value>0.23.1</value>
91 </property>
92 </activation>
93 <id>hadoop-0.23.1</id>
94 <dependencies>
95 <dependency>
96 <groupId>org.apache.hadoop</groupId>
97 <artifactId>hadoop-common</artifactId>
buyingyi55df5212013-03-24 07:20:08 +000098 <type>jar</type>
99 <scope>compile</scope>
100 </dependency>
101 <dependency>
102 <groupId>org.apache.hadoop</groupId>
103 <artifactId>hadoop-mapreduce-client-core</artifactId>
buyingyi55df5212013-03-24 07:20:08 +0000104 <type>jar</type>
105 <scope>compile</scope>
106 </dependency>
107 <dependency>
108 <groupId>org.apache.hadoop</groupId>
109 <artifactId>hadoop-hdfs</artifactId>
buyingyi55df5212013-03-24 07:20:08 +0000110 <type>jar</type>
111 <scope>compile</scope>
112 </dependency>
113 <dependency>
114 <groupId>org.apache.hadoop</groupId>
115 <artifactId>hadoop-minicluster</artifactId>
buyingyi55df5212013-03-24 07:20:08 +0000116 <type>jar</type>
117 <scope>compile</scope>
118 </dependency>
119 </dependencies>
120 </profile>
121 <profile>
122 <id>hadoop-0.23.6</id>
123 <activation>
124 <activeByDefault>false</activeByDefault>
125 <property>
126 <name>hadoop</name>
127 <value>0.23.6</value>
128 </property>
129 </activation>
130 <dependencies>
131 <dependency>
132 <groupId>org.apache.hadoop</groupId>
133 <artifactId>hadoop-common</artifactId>
134 <version>0.23.6</version>
135 <type>jar</type>
136 <scope>compile</scope>
137 </dependency>
138 <dependency>
139 <groupId>org.apache.hadoop</groupId>
140 <artifactId>hadoop-mapreduce-client-core</artifactId>
141 <version>0.23.6</version>
142 <type>jar</type>
143 <scope>compile</scope>
144 </dependency>
145 <dependency>
146 <groupId>org.apache.hadoop</groupId>
147 <artifactId>hadoop-hdfs</artifactId>
148 <version>0.23.6</version>
149 <type>jar</type>
150 <scope>compile</scope>
151 </dependency>
152 <dependency>
153 <groupId>org.apache.hadoop</groupId>
154 <artifactId>hadoop-minicluster</artifactId>
155 <version>0.23.6</version>
156 <type>jar</type>
157 <scope>compile</scope>
158 </dependency>
159 </dependencies>
160 </profile>
161 <profile>
162 <activation>
163 <activeByDefault>false</activeByDefault>
164 <property>
165 <name>hadoop</name>
166 <value>cdh-4.2</value>
167 </property>
168 </activation>
169 <id>cdh-4.2</id>
170 <dependencies>
171 <dependency>
172 <groupId>org.apache.hadoop</groupId>
173 <artifactId>hadoop-common</artifactId>
174 <version>2.0.0-cdh4.2.0</version>
175 <type>jar</type>
176 <scope>compile</scope>
177 </dependency>
178 <dependency>
179 <groupId>org.apache.hadoop</groupId>
180 <artifactId>hadoop-mapreduce-client-core</artifactId>
181 <version>2.0.0-cdh4.2.0</version>
182 <type>jar</type>
183 <scope>compile</scope>
184 </dependency>
185 <dependency>
186 <groupId>org.apache.hadoop</groupId>
187 <artifactId>hadoop-hdfs</artifactId>
188 <version>2.0.0-cdh4.2.0</version>
189 <type>jar</type>
190 <scope>compile</scope>
191 </dependency>
192 <dependency>
193 <groupId>org.apache.hadoop</groupId>
194 <artifactId>hadoop-minicluster</artifactId>
195 <version>2.0.0-cdh4.2.0</version>
196 <type>jar</type>
197 <scope>compile</scope>
198 </dependency>
199 </dependencies>
200 </profile>
201 <profile>
202 <activation>
203 <activeByDefault>false</activeByDefault>
204 <property>
205 <name>hadoop</name>
206 <value>cdh-4.1</value>
207 </property>
208 </activation>
209 <id>cdh-4.1</id>
210 <dependencies>
211 <dependency>
212 <groupId>org.apache.hadoop</groupId>
213 <artifactId>hadoop-common</artifactId>
214 <version>2.0.0-cdh4.1.0</version>
215 <type>jar</type>
216 <scope>compile</scope>
217 </dependency>
218 <dependency>
219 <groupId>org.apache.hadoop</groupId>
220 <artifactId>hadoop-mapreduce-client-core</artifactId>
221 <version>2.0.0-cdh4.1.0</version>
222 <type>jar</type>
223 <scope>compile</scope>
224 </dependency>
225 <dependency>
226 <groupId>org.apache.hadoop</groupId>
227 <artifactId>hadoop-hdfs</artifactId>
228 <version>2.0.0-cdh4.1.0</version>
229 <type>jar</type>
230 <scope>compile</scope>
231 </dependency>
232 <dependency>
233 <groupId>org.apache.hadoop</groupId>
234 <artifactId>hadoop-minicluster</artifactId>
235 <version>2.0.0-cdh4.1.0</version>
236 <type>jar</type>
237 <scope>compile</scope>
238 </dependency>
239 </dependencies>
240 </profile>
241 </profiles>
242
243 <dependencies>
244 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -0700245 <groupId>org.apache.hyracks</groupId>
buyingyi55df5212013-03-24 07:20:08 +0000246 <artifactId>hyracks-api</artifactId>
Ian Maxonfe7d5512016-02-02 10:38:56 -0800247 <version>0.2.17-incubating</version>
buyingyi55df5212013-03-24 07:20:08 +0000248 <type>jar</type>
249 <scope>compile</scope>
250 </dependency>
251 </dependencies>
252
253 <repositories>
254 <repository>
255 <id>cloudera</id>
256 <url>https://repository.cloudera.com/artifactory/cloudera-repos/</url>
257 </repository>
258 </repositories>
259</project>