blob: cbda6f5657a9f07b257c96be3f5490182cee7dc0 [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 Maxon14be9462016-02-10 14:55:42 -080028 <version>0.2.18-SNAPSHOT</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>
buyingyi55df5212013-03-24 07:20:08 +000036 <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>
buyingyi2a8f4332013-08-09 12:46:49 -070054 <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>
buyingyi55df5212013-03-24 07:20:08 +000066 </plugins>
67 </build>
68
69 <profiles>
70 <profile>
71 <activation>
Ianeee859a2014-09-21 18:26:49 -070072 <activeByDefault>false</activeByDefault>
buyingyi55df5212013-03-24 07:20:08 +000073 </activation>
74 <id>hadoop-0.20.2</id>
75 <dependencies>
76 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -070077 <groupId>org.apache.hyracks</groupId>
Ianeee859a2014-09-21 18:26:49 -070078 <artifactId>hyracks-hdfs-1.x</artifactId>
buyingyief88ddb2013-03-25 02:57:39 +000079 <version>${project.version}</version>
buyingyi55df5212013-03-24 07:20:08 +000080 <type>jar</type>
81 <scope>compile</scope>
82 </dependency>
83 </dependencies>
84 </profile>
85 <profile>
86 <activation>
87 <activeByDefault>false</activeByDefault>
88 <property>
89 <name>hadoop</name>
90 <value>1.0.4</value>
91 </property>
92 </activation>
93 <id>hadoop-1.0.4</id>
94 <dependencies>
95 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -070096 <groupId>org.apache.hyracks</groupId>
Ianeee859a2014-09-21 18:26:49 -070097 <artifactId>hyracks-hdfs-1.x</artifactId>
98 <version>${project.version}</version>
99 <type>jar</type>
100 <scope>compile</scope>
101 </dependency>
102 </dependencies>
103 </profile>
104
105 <profile>
106 <activation>
107 <activeByDefault>true</activeByDefault>
108 <property>
109 <name>hadoop</name>
110 <value>2.2.0</value>
111 </property>
112 </activation>
113 <id>hadoop-2.2.0</id>
114 <dependencies>
115 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -0700116 <groupId>org.apache.hyracks</groupId>
Ianeee859a2014-09-21 18:26:49 -0700117 <artifactId>hyracks-hdfs-2.x</artifactId>
buyingyief88ddb2013-03-25 02:57:39 +0000118 <version>${project.version}</version>
buyingyi55df5212013-03-24 07:20:08 +0000119 <type>jar</type>
120 <scope>compile</scope>
121 </dependency>
122 </dependencies>
123 </profile>
124 <profile>
125 <activation>
126 <activeByDefault>false</activeByDefault>
127 <property>
128 <name>hadoop</name>
129 <value>0.23.1</value>
130 </property>
131 </activation>
132 <id>hadoop-0.23.1</id>
133 <dependencies>
134 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -0700135 <groupId>org.apache.hyracks</groupId>
Ianeee859a2014-09-21 18:26:49 -0700136 <artifactId>hyracks-hdfs-2.x</artifactId>
buyingyief88ddb2013-03-25 02:57:39 +0000137 <version>${project.version}</version>
buyingyi55df5212013-03-24 07:20:08 +0000138 <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>0.23.6</value>
149 </property>
150 </activation>
151 <id>hadoop-0.23.6</id>
152 <dependencies>
153 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -0700154 <groupId>org.apache.hyracks</groupId>
Ianeee859a2014-09-21 18:26:49 -0700155 <artifactId>hyracks-hdfs-2.x</artifactId>
buyingyief88ddb2013-03-25 02:57:39 +0000156 <version>${project.version}</version>
buyingyi55df5212013-03-24 07:20:08 +0000157 <type>jar</type>
158 <scope>compile</scope>
159 </dependency>
160 </dependencies>
161 </profile>
162 <profile>
163 <activation>
164 <activeByDefault>false</activeByDefault>
165 <property>
166 <name>hadoop</name>
167 <value>cdh-4.1</value>
168 </property>
169 </activation>
170 <id>cdh-4.1</id>
171 <dependencies>
172 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -0700173 <groupId>org.apache.hyracks</groupId>
Ianeee859a2014-09-21 18:26:49 -0700174 <artifactId>hyracks-hdfs-2.x</artifactId>
buyingyief88ddb2013-03-25 02:57:39 +0000175 <version>${project.version}</version>
buyingyi55df5212013-03-24 07:20:08 +0000176 <type>jar</type>
177 <scope>compile</scope>
178 </dependency>
179 </dependencies>
180 </profile>
181 <profile>
182 <activation>
183 <activeByDefault>false</activeByDefault>
184 <property>
185 <name>hadoop</name>
186 <value>cdh-4.2</value>
187 </property>
188 </activation>
189 <id>cdh-4.2</id>
190 <dependencies>
191 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -0700192 <groupId>org.apache.hyracks</groupId>
Ianeee859a2014-09-21 18:26:49 -0700193 <artifactId>hyracks-hdfs-2.x</artifactId>
buyingyief88ddb2013-03-25 02:57:39 +0000194 <version>${project.version}</version>
buyingyi55df5212013-03-24 07:20:08 +0000195 <type>jar</type>
196 <scope>compile</scope>
197 </dependency>
198 </dependencies>
199 </profile>
200 </profiles>
201
202 <dependencies>
203 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -0700204 <groupId>org.apache.hyracks</groupId>
buyingyi55df5212013-03-24 07:20:08 +0000205 <artifactId>hyracks-api</artifactId>
Ian Maxon14be9462016-02-10 14:55:42 -0800206 <version>0.2.18-SNAPSHOT</version>
buyingyi55df5212013-03-24 07:20:08 +0000207 <scope>compile</scope>
208 </dependency>
209 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -0700210 <groupId>org.apache.hyracks</groupId>
buyingyi55df5212013-03-24 07:20:08 +0000211 <artifactId>hyracks-dataflow-std</artifactId>
Ian Maxon14be9462016-02-10 14:55:42 -0800212 <version>0.2.18-SNAPSHOT</version>
buyingyi55df5212013-03-24 07:20:08 +0000213 <scope>compile</scope>
214 </dependency>
215 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -0700216 <groupId>org.apache.hyracks</groupId>
buyingyi55df5212013-03-24 07:20:08 +0000217 <artifactId>hyracks-dataflow-common</artifactId>
Ian Maxon14be9462016-02-10 14:55:42 -0800218 <version>0.2.18-SNAPSHOT</version>
buyingyi55df5212013-03-24 07:20:08 +0000219 <scope>compile</scope>
220 </dependency>
221 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -0700222 <groupId>org.apache.hyracks</groupId>
buyingyi55df5212013-03-24 07:20:08 +0000223 <artifactId>hyracks-control-cc</artifactId>
Ian Maxon14be9462016-02-10 14:55:42 -0800224 <version>0.2.18-SNAPSHOT</version>
buyingyi55df5212013-03-24 07:20:08 +0000225 <scope>test</scope>
226 </dependency>
227 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -0700228 <groupId>org.apache.hyracks</groupId>
buyingyi55df5212013-03-24 07:20:08 +0000229 <artifactId>hyracks-control-nc</artifactId>
Ian Maxon14be9462016-02-10 14:55:42 -0800230 <version>0.2.18-SNAPSHOT</version>
buyingyi55df5212013-03-24 07:20:08 +0000231 <scope>test</scope>
232 </dependency>
233 <dependency>
234 <groupId>org.apache.commons</groupId>
235 <artifactId>commons-io</artifactId>
236 <version>1.3.2</version>
237 <scope>test</scope>
238 </dependency>
239 </dependencies>
240</project>