blob: cf1e48dd9cd65a8ffb182a34d5ee5eaf6694aefa [file] [log] [blame]
buyingyi55df5212013-03-24 07:20:08 +00001<?xml version="1.0"?>
Ian Maxond8857792015-09-11 14:19:53 -07002<!--
3 ! 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.
19 !-->
20
Vinayak Borkar9c832002013-12-11 12:08:57 -080021<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 -070022 <modelVersion>4.0.0</modelVersion>
23 <artifactId>hyracks-hdfs-core</artifactId>
24 <name>hyracks-hdfs-core</name>
25 <parent>
26 <artifactId>hyracks-hdfs</artifactId>
27 <groupId>org.apache.hyracks</groupId>
28 <version>0.2.18-SNAPSHOT</version>
29 </parent>
30 <properties>
31 <root.dir>${basedir}/../../..</root.dir>
32 </properties>
33 <build>
34 <plugins>
35 <plugin>
36 <artifactId>maven-clean-plugin</artifactId>
37 <version>2.5</version>
38 <configuration>
39 <filesets>
40 <fileset>
41 <directory>.</directory>
42 <includes>
43 <include>edu*</include>
44 <include>actual*</include>
45 <include>build*</include>
46 <include>expect*</include>
47 <include>ClusterController*</include>
48 <include>edu.uci.*</include>
49 </includes>
50 </fileset>
51 </filesets>
52 </configuration>
53 </plugin>
54 <plugin>
55 <groupId>org.apache.maven.plugins</groupId>
56 <artifactId>maven-jar-plugin</artifactId>
57 <version>2.2</version>
58 <executions>
59 <execution>
60 <goals>
61 <goal>test-jar</goal>
62 </goals>
63 </execution>
64 </executions>
65 </plugin>
66 </plugins>
67 </build>
buyingyi55df5212013-03-24 07:20:08 +000068
Michael Blowb4c1fb02016-05-09 15:41:00 -070069 <profiles>
70 <profile>
71 <activation>
72 <activeByDefault>false</activeByDefault>
73 </activation>
74 <id>hadoop-0.20.2</id>
75 <dependencies>
76 <dependency>
77 <groupId>org.apache.hyracks</groupId>
78 <artifactId>hyracks-hdfs-1.x</artifactId>
79 <version>${project.version}</version>
80 <type>jar</type>
81 <scope>compile</scope>
82 </dependency>
Michael Blow5ab717c2016-10-05 11:53:37 -040083 <dependency>
84 <groupId>org.apache.hyracks</groupId>
85 <artifactId>hyracks-hdfs-1.x</artifactId>
86 <version>${project.version}</version>
87 <type>test-jar</type>
88 <scope>test</scope>
89 </dependency>
90 <dependency>
91 <groupId>org.apache.hadoop</groupId>
92 <artifactId>hadoop-test</artifactId>
93 <version>0.20.2</version>
94 <type>jar</type>
95 <scope>test</scope>
96 </dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -070097 </dependencies>
98 </profile>
99 <profile>
100 <activation>
101 <activeByDefault>false</activeByDefault>
102 <property>
103 <name>hadoop</name>
104 <value>1.0.4</value>
105 </property>
106 </activation>
107 <id>hadoop-1.0.4</id>
108 <dependencies>
109 <dependency>
110 <groupId>org.apache.hyracks</groupId>
111 <artifactId>hyracks-hdfs-1.x</artifactId>
112 <version>${project.version}</version>
113 <type>jar</type>
114 <scope>compile</scope>
115 </dependency>
Michael Blow5ab717c2016-10-05 11:53:37 -0400116 <dependency>
117 <groupId>org.apache.hyracks</groupId>
118 <artifactId>hyracks-hdfs-1.x</artifactId>
119 <version>${project.version}</version>
120 <type>test-jar</type>
121 <scope>test</scope>
122 </dependency>
123 <dependency>
124 <groupId>org.apache.hadoop</groupId>
125 <artifactId>hadoop-minicluster</artifactId>
126 <version>1.0.4</version>
127 <type>jar</type>
128 <scope>test</scope>
129 </dependency>
130 <dependency>
131 <groupId>org.apache.hadoop</groupId>
132 <artifactId>hadoop-test</artifactId>
133 <version>1.0.4</version>
134 <type>jar</type>
135 <scope>test</scope>
136 </dependency> </dependencies>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700137 </profile>
Ianeee859a2014-09-21 18:26:49 -0700138
Michael Blowb4c1fb02016-05-09 15:41:00 -0700139 <profile>
140 <activation>
141 <activeByDefault>true</activeByDefault>
142 <property>
143 <name>hadoop</name>
144 <value>2.2.0</value>
145 </property>
146 </activation>
147 <id>hadoop-2.2.0</id>
148 <dependencies>
149 <dependency>
150 <groupId>org.apache.hyracks</groupId>
151 <artifactId>hyracks-hdfs-2.x</artifactId>
152 <version>${project.version}</version>
153 <type>jar</type>
154 <scope>compile</scope>
155 </dependency>
Michael Blow5ab717c2016-10-05 11:53:37 -0400156 <dependency>
157 <groupId>org.apache.hyracks</groupId>
158 <artifactId>hyracks-hdfs-2.x</artifactId>
159 <version>${project.version}</version>
160 <type>test-jar</type>
161 <scope>test</scope>
162 </dependency>
163 <dependency>
164 <groupId>org.apache.hadoop</groupId>
165 <artifactId>hadoop-minicluster</artifactId>
166 <type>jar</type>
167 <scope>test</scope>
168 </dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700169 </dependencies>
170 </profile>
171 <profile>
172 <activation>
173 <activeByDefault>false</activeByDefault>
174 <property>
175 <name>hadoop</name>
176 <value>0.23.1</value>
177 </property>
178 </activation>
179 <id>hadoop-0.23.1</id>
180 <dependencies>
181 <dependency>
182 <groupId>org.apache.hyracks</groupId>
183 <artifactId>hyracks-hdfs-2.x</artifactId>
184 <version>${project.version}</version>
185 <type>jar</type>
186 <scope>compile</scope>
187 </dependency>
Michael Blow5ab717c2016-10-05 11:53:37 -0400188 <dependency>
189 <groupId>org.apache.hyracks</groupId>
190 <artifactId>hyracks-hdfs-2.x</artifactId>
191 <version>${project.version}</version>
192 <type>test-jar</type>
193 <scope>test</scope>
194 </dependency>
195 <dependency>
196 <groupId>org.apache.hadoop</groupId>
197 <artifactId>hadoop-minicluster</artifactId>
198 <type>jar</type>
199 <scope>test</scope>
200 </dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700201 </dependencies>
202 </profile>
203 <profile>
204 <activation>
205 <activeByDefault>false</activeByDefault>
206 <property>
207 <name>hadoop</name>
208 <value>0.23.6</value>
209 </property>
210 </activation>
211 <id>hadoop-0.23.6</id>
212 <dependencies>
213 <dependency>
214 <groupId>org.apache.hyracks</groupId>
215 <artifactId>hyracks-hdfs-2.x</artifactId>
216 <version>${project.version}</version>
217 <type>jar</type>
218 <scope>compile</scope>
219 </dependency>
Michael Blow5ab717c2016-10-05 11:53:37 -0400220 <dependency>
221 <groupId>org.apache.hyracks</groupId>
222 <artifactId>hyracks-hdfs-2.x</artifactId>
223 <version>${project.version}</version>
224 <type>test-jar</type>
225 <scope>test</scope>
226 </dependency>
227 <dependency>
228 <groupId>org.apache.hadoop</groupId>
229 <artifactId>hadoop-minicluster</artifactId>
230 <version>0.23.6</version>
231 <type>jar</type>
232 <scope>test</scope>
233 </dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700234 </dependencies>
235 </profile>
236 <profile>
237 <activation>
238 <activeByDefault>false</activeByDefault>
239 <property>
240 <name>hadoop</name>
241 <value>cdh-4.1</value>
242 </property>
243 </activation>
244 <id>cdh-4.1</id>
245 <dependencies>
246 <dependency>
247 <groupId>org.apache.hyracks</groupId>
248 <artifactId>hyracks-hdfs-2.x</artifactId>
249 <version>${project.version}</version>
250 <type>jar</type>
251 <scope>compile</scope>
252 </dependency>
Michael Blow5ab717c2016-10-05 11:53:37 -0400253 <dependency>
254 <groupId>org.apache.hyracks</groupId>
255 <artifactId>hyracks-hdfs-2.x</artifactId>
256 <version>${project.version}</version>
257 <type>test-jar</type>
258 <scope>test</scope>
259 </dependency>
260 <dependency>
261 <groupId>org.apache.hadoop</groupId>
262 <artifactId>hadoop-minicluster</artifactId>
263 <version>2.0.0-cdh4.1.0</version>
264 <type>jar</type>
265 <scope>test</scope>
266 </dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700267 </dependencies>
268 </profile>
269 <profile>
270 <activation>
271 <activeByDefault>false</activeByDefault>
272 <property>
273 <name>hadoop</name>
274 <value>cdh-4.2</value>
275 </property>
276 </activation>
277 <id>cdh-4.2</id>
278 <dependencies>
279 <dependency>
280 <groupId>org.apache.hyracks</groupId>
281 <artifactId>hyracks-hdfs-2.x</artifactId>
282 <version>${project.version}</version>
283 <type>jar</type>
284 <scope>compile</scope>
285 </dependency>
Michael Blow5ab717c2016-10-05 11:53:37 -0400286 <dependency>
287 <groupId>org.apache.hyracks</groupId>
288 <artifactId>hyracks-hdfs-2.x</artifactId>
289 <version>${project.version}</version>
290 <type>test-jar</type>
291 <scope>test</scope>
292 </dependency>
293 <dependency>
294 <groupId>org.apache.hadoop</groupId>
295 <artifactId>hadoop-minicluster</artifactId>
296 <version>2.0.0-cdh4.2.0</version>
297 <type>jar</type>
298 <scope>test</scope>
299 </dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700300 </dependencies>
301 </profile>
302 </profiles>
buyingyi55df5212013-03-24 07:20:08 +0000303
Michael Blowb4c1fb02016-05-09 15:41:00 -0700304 <dependencies>
305 <dependency>
306 <groupId>org.apache.hyracks</groupId>
307 <artifactId>hyracks-api</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400308 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700309 <scope>compile</scope>
310 </dependency>
311 <dependency>
312 <groupId>org.apache.hyracks</groupId>
313 <artifactId>hyracks-dataflow-std</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400314 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700315 <scope>compile</scope>
316 </dependency>
317 <dependency>
318 <groupId>org.apache.hyracks</groupId>
319 <artifactId>hyracks-dataflow-common</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400320 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700321 <scope>compile</scope>
322 </dependency>
323 <dependency>
324 <groupId>org.apache.hyracks</groupId>
325 <artifactId>hyracks-control-cc</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400326 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700327 <scope>test</scope>
328 </dependency>
329 <dependency>
330 <groupId>org.apache.hyracks</groupId>
331 <artifactId>hyracks-control-nc</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400332 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700333 <scope>test</scope>
334 </dependency>
335 <dependency>
336 <groupId>org.apache.commons</groupId>
337 <artifactId>commons-io</artifactId>
338 <version>1.3.2</version>
339 <scope>test</scope>
340 </dependency>
341 </dependencies>
buyingyi55df5212013-03-24 07:20:08 +0000342</project>