blob: 93653597fb0e506617cfcd98503279babf9e9558 [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">
buyingyi55df5212013-03-24 07:20:08 +000022 <modelVersion>4.0.0</modelVersion>
23 <artifactId>hyracks-hdfs-core</artifactId>
24 <name>hyracks-hdfs-core</name>
25 <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
31 <build>
32 <plugins>
33 <plugin>
buyingyi55df5212013-03-24 07:20:08 +000034 <artifactId>maven-clean-plugin</artifactId>
35 <version>2.5</version>
36 <configuration>
37 <filesets>
38 <fileset>
39 <directory>.</directory>
40 <includes>
41 <include>edu*</include>
42 <include>actual*</include>
43 <include>build*</include>
44 <include>expect*</include>
45 <include>ClusterController*</include>
46 <include>edu.uci.*</include>
47 </includes>
48 </fileset>
49 </filesets>
50 </configuration>
51 </plugin>
buyingyi2a8f4332013-08-09 12:46:49 -070052 <plugin>
53 <groupId>org.apache.maven.plugins</groupId>
54 <artifactId>maven-jar-plugin</artifactId>
55 <version>2.2</version>
56 <executions>
57 <execution>
58 <goals>
59 <goal>test-jar</goal>
60 </goals>
61 </execution>
62 </executions>
63 </plugin>
buyingyi55df5212013-03-24 07:20:08 +000064 </plugins>
65 </build>
66
67 <profiles>
68 <profile>
69 <activation>
Ianeee859a2014-09-21 18:26:49 -070070 <activeByDefault>false</activeByDefault>
buyingyi55df5212013-03-24 07:20:08 +000071 </activation>
72 <id>hadoop-0.20.2</id>
73 <dependencies>
74 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -070075 <groupId>org.apache.hyracks</groupId>
Ianeee859a2014-09-21 18:26:49 -070076 <artifactId>hyracks-hdfs-1.x</artifactId>
buyingyief88ddb2013-03-25 02:57:39 +000077 <version>${project.version}</version>
buyingyi55df5212013-03-24 07:20:08 +000078 <type>jar</type>
79 <scope>compile</scope>
80 </dependency>
81 </dependencies>
82 </profile>
83 <profile>
84 <activation>
85 <activeByDefault>false</activeByDefault>
86 <property>
87 <name>hadoop</name>
88 <value>1.0.4</value>
89 </property>
90 </activation>
91 <id>hadoop-1.0.4</id>
92 <dependencies>
93 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -070094 <groupId>org.apache.hyracks</groupId>
Ianeee859a2014-09-21 18:26:49 -070095 <artifactId>hyracks-hdfs-1.x</artifactId>
96 <version>${project.version}</version>
97 <type>jar</type>
98 <scope>compile</scope>
99 </dependency>
100 </dependencies>
101 </profile>
102
103 <profile>
104 <activation>
105 <activeByDefault>true</activeByDefault>
106 <property>
107 <name>hadoop</name>
108 <value>2.2.0</value>
109 </property>
110 </activation>
111 <id>hadoop-2.2.0</id>
112 <dependencies>
113 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -0700114 <groupId>org.apache.hyracks</groupId>
Ianeee859a2014-09-21 18:26:49 -0700115 <artifactId>hyracks-hdfs-2.x</artifactId>
buyingyief88ddb2013-03-25 02:57:39 +0000116 <version>${project.version}</version>
buyingyi55df5212013-03-24 07:20:08 +0000117 <type>jar</type>
118 <scope>compile</scope>
119 </dependency>
120 </dependencies>
121 </profile>
122 <profile>
123 <activation>
124 <activeByDefault>false</activeByDefault>
125 <property>
126 <name>hadoop</name>
127 <value>0.23.1</value>
128 </property>
129 </activation>
130 <id>hadoop-0.23.1</id>
131 <dependencies>
132 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -0700133 <groupId>org.apache.hyracks</groupId>
Ianeee859a2014-09-21 18:26:49 -0700134 <artifactId>hyracks-hdfs-2.x</artifactId>
buyingyief88ddb2013-03-25 02:57:39 +0000135 <version>${project.version}</version>
buyingyi55df5212013-03-24 07:20:08 +0000136 <type>jar</type>
137 <scope>compile</scope>
138 </dependency>
139 </dependencies>
140 </profile>
141 <profile>
142 <activation>
143 <activeByDefault>false</activeByDefault>
144 <property>
145 <name>hadoop</name>
146 <value>0.23.6</value>
147 </property>
148 </activation>
149 <id>hadoop-0.23.6</id>
150 <dependencies>
151 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -0700152 <groupId>org.apache.hyracks</groupId>
Ianeee859a2014-09-21 18:26:49 -0700153 <artifactId>hyracks-hdfs-2.x</artifactId>
buyingyief88ddb2013-03-25 02:57:39 +0000154 <version>${project.version}</version>
buyingyi55df5212013-03-24 07:20:08 +0000155 <type>jar</type>
156 <scope>compile</scope>
157 </dependency>
158 </dependencies>
159 </profile>
160 <profile>
161 <activation>
162 <activeByDefault>false</activeByDefault>
163 <property>
164 <name>hadoop</name>
165 <value>cdh-4.1</value>
166 </property>
167 </activation>
168 <id>cdh-4.1</id>
169 <dependencies>
170 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -0700171 <groupId>org.apache.hyracks</groupId>
Ianeee859a2014-09-21 18:26:49 -0700172 <artifactId>hyracks-hdfs-2.x</artifactId>
buyingyief88ddb2013-03-25 02:57:39 +0000173 <version>${project.version}</version>
buyingyi55df5212013-03-24 07:20:08 +0000174 <type>jar</type>
175 <scope>compile</scope>
176 </dependency>
177 </dependencies>
178 </profile>
179 <profile>
180 <activation>
181 <activeByDefault>false</activeByDefault>
182 <property>
183 <name>hadoop</name>
184 <value>cdh-4.2</value>
185 </property>
186 </activation>
187 <id>cdh-4.2</id>
188 <dependencies>
189 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -0700190 <groupId>org.apache.hyracks</groupId>
Ianeee859a2014-09-21 18:26:49 -0700191 <artifactId>hyracks-hdfs-2.x</artifactId>
buyingyief88ddb2013-03-25 02:57:39 +0000192 <version>${project.version}</version>
buyingyi55df5212013-03-24 07:20:08 +0000193 <type>jar</type>
194 <scope>compile</scope>
195 </dependency>
196 </dependencies>
197 </profile>
198 </profiles>
199
200 <dependencies>
201 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -0700202 <groupId>org.apache.hyracks</groupId>
buyingyi55df5212013-03-24 07:20:08 +0000203 <artifactId>hyracks-api</artifactId>
Ian Maxond4daeb42015-09-15 14:31:32 -0700204 <version>0.2.17-SNAPSHOT</version>
buyingyi55df5212013-03-24 07:20:08 +0000205 <scope>compile</scope>
206 </dependency>
207 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -0700208 <groupId>org.apache.hyracks</groupId>
buyingyi55df5212013-03-24 07:20:08 +0000209 <artifactId>hyracks-dataflow-std</artifactId>
Ian Maxond4daeb42015-09-15 14:31:32 -0700210 <version>0.2.17-SNAPSHOT</version>
buyingyi55df5212013-03-24 07:20:08 +0000211 <scope>compile</scope>
212 </dependency>
213 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -0700214 <groupId>org.apache.hyracks</groupId>
buyingyi55df5212013-03-24 07:20:08 +0000215 <artifactId>hyracks-dataflow-common</artifactId>
Ian Maxond4daeb42015-09-15 14:31:32 -0700216 <version>0.2.17-SNAPSHOT</version>
buyingyi55df5212013-03-24 07:20:08 +0000217 <scope>compile</scope>
218 </dependency>
219 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -0700220 <groupId>org.apache.hyracks</groupId>
buyingyi55df5212013-03-24 07:20:08 +0000221 <artifactId>hyracks-control-cc</artifactId>
Ian Maxond4daeb42015-09-15 14:31:32 -0700222 <version>0.2.17-SNAPSHOT</version>
buyingyi55df5212013-03-24 07:20:08 +0000223 <scope>test</scope>
224 </dependency>
225 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -0700226 <groupId>org.apache.hyracks</groupId>
buyingyi55df5212013-03-24 07:20:08 +0000227 <artifactId>hyracks-control-nc</artifactId>
Ian Maxond4daeb42015-09-15 14:31:32 -0700228 <version>0.2.17-SNAPSHOT</version>
buyingyi55df5212013-03-24 07:20:08 +0000229 <scope>test</scope>
230 </dependency>
231 <dependency>
232 <groupId>org.apache.commons</groupId>
233 <artifactId>commons-io</artifactId>
234 <version>1.3.2</version>
235 <scope>test</scope>
236 </dependency>
237 </dependencies>
238</project>