blob: 170ef5b0f875981eaebed1050efda937d77b7247 [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>
34 <groupId>org.apache.maven.plugins</groupId>
35 <artifactId>maven-compiler-plugin</artifactId>
36 <version>2.0.2</version>
37 <configuration>
38 <source>1.7</source>
39 <target>1.7</target>
40 <fork>true</fork>
41 </configuration>
42 </plugin>
43 <plugin>
buyingyi55df5212013-03-24 07:20:08 +000044 <artifactId>maven-clean-plugin</artifactId>
45 <version>2.5</version>
46 <configuration>
47 <filesets>
48 <fileset>
49 <directory>.</directory>
50 <includes>
51 <include>edu*</include>
52 <include>actual*</include>
53 <include>build*</include>
54 <include>expect*</include>
55 <include>ClusterController*</include>
56 <include>edu.uci.*</include>
57 </includes>
58 </fileset>
59 </filesets>
60 </configuration>
61 </plugin>
buyingyi2a8f4332013-08-09 12:46:49 -070062 <plugin>
63 <groupId>org.apache.maven.plugins</groupId>
64 <artifactId>maven-jar-plugin</artifactId>
65 <version>2.2</version>
66 <executions>
67 <execution>
68 <goals>
69 <goal>test-jar</goal>
70 </goals>
71 </execution>
72 </executions>
73 </plugin>
buyingyi55df5212013-03-24 07:20:08 +000074 </plugins>
75 </build>
76
77 <profiles>
78 <profile>
79 <activation>
Ianeee859a2014-09-21 18:26:49 -070080 <activeByDefault>false</activeByDefault>
buyingyi55df5212013-03-24 07:20:08 +000081 </activation>
82 <id>hadoop-0.20.2</id>
83 <dependencies>
84 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -070085 <groupId>org.apache.hyracks</groupId>
Ianeee859a2014-09-21 18:26:49 -070086 <artifactId>hyracks-hdfs-1.x</artifactId>
buyingyief88ddb2013-03-25 02:57:39 +000087 <version>${project.version}</version>
buyingyi55df5212013-03-24 07:20:08 +000088 <type>jar</type>
89 <scope>compile</scope>
90 </dependency>
91 </dependencies>
92 </profile>
93 <profile>
94 <activation>
95 <activeByDefault>false</activeByDefault>
96 <property>
97 <name>hadoop</name>
98 <value>1.0.4</value>
99 </property>
100 </activation>
101 <id>hadoop-1.0.4</id>
102 <dependencies>
103 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -0700104 <groupId>org.apache.hyracks</groupId>
Ianeee859a2014-09-21 18:26:49 -0700105 <artifactId>hyracks-hdfs-1.x</artifactId>
106 <version>${project.version}</version>
107 <type>jar</type>
108 <scope>compile</scope>
109 </dependency>
110 </dependencies>
111 </profile>
112
113 <profile>
114 <activation>
115 <activeByDefault>true</activeByDefault>
116 <property>
117 <name>hadoop</name>
118 <value>2.2.0</value>
119 </property>
120 </activation>
121 <id>hadoop-2.2.0</id>
122 <dependencies>
123 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -0700124 <groupId>org.apache.hyracks</groupId>
Ianeee859a2014-09-21 18:26:49 -0700125 <artifactId>hyracks-hdfs-2.x</artifactId>
buyingyief88ddb2013-03-25 02:57:39 +0000126 <version>${project.version}</version>
buyingyi55df5212013-03-24 07:20:08 +0000127 <type>jar</type>
128 <scope>compile</scope>
129 </dependency>
130 </dependencies>
131 </profile>
132 <profile>
133 <activation>
134 <activeByDefault>false</activeByDefault>
135 <property>
136 <name>hadoop</name>
137 <value>0.23.1</value>
138 </property>
139 </activation>
140 <id>hadoop-0.23.1</id>
141 <dependencies>
142 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -0700143 <groupId>org.apache.hyracks</groupId>
Ianeee859a2014-09-21 18:26:49 -0700144 <artifactId>hyracks-hdfs-2.x</artifactId>
buyingyief88ddb2013-03-25 02:57:39 +0000145 <version>${project.version}</version>
buyingyi55df5212013-03-24 07:20:08 +0000146 <type>jar</type>
147 <scope>compile</scope>
148 </dependency>
149 </dependencies>
150 </profile>
151 <profile>
152 <activation>
153 <activeByDefault>false</activeByDefault>
154 <property>
155 <name>hadoop</name>
156 <value>0.23.6</value>
157 </property>
158 </activation>
159 <id>hadoop-0.23.6</id>
160 <dependencies>
161 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -0700162 <groupId>org.apache.hyracks</groupId>
Ianeee859a2014-09-21 18:26:49 -0700163 <artifactId>hyracks-hdfs-2.x</artifactId>
buyingyief88ddb2013-03-25 02:57:39 +0000164 <version>${project.version}</version>
buyingyi55df5212013-03-24 07:20:08 +0000165 <type>jar</type>
166 <scope>compile</scope>
167 </dependency>
168 </dependencies>
169 </profile>
170 <profile>
171 <activation>
172 <activeByDefault>false</activeByDefault>
173 <property>
174 <name>hadoop</name>
175 <value>cdh-4.1</value>
176 </property>
177 </activation>
178 <id>cdh-4.1</id>
179 <dependencies>
180 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -0700181 <groupId>org.apache.hyracks</groupId>
Ianeee859a2014-09-21 18:26:49 -0700182 <artifactId>hyracks-hdfs-2.x</artifactId>
buyingyief88ddb2013-03-25 02:57:39 +0000183 <version>${project.version}</version>
buyingyi55df5212013-03-24 07:20:08 +0000184 <type>jar</type>
185 <scope>compile</scope>
186 </dependency>
187 </dependencies>
188 </profile>
189 <profile>
190 <activation>
191 <activeByDefault>false</activeByDefault>
192 <property>
193 <name>hadoop</name>
194 <value>cdh-4.2</value>
195 </property>
196 </activation>
197 <id>cdh-4.2</id>
198 <dependencies>
199 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -0700200 <groupId>org.apache.hyracks</groupId>
Ianeee859a2014-09-21 18:26:49 -0700201 <artifactId>hyracks-hdfs-2.x</artifactId>
buyingyief88ddb2013-03-25 02:57:39 +0000202 <version>${project.version}</version>
buyingyi55df5212013-03-24 07:20:08 +0000203 <type>jar</type>
204 <scope>compile</scope>
205 </dependency>
206 </dependencies>
207 </profile>
208 </profiles>
209
210 <dependencies>
211 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -0700212 <groupId>org.apache.hyracks</groupId>
buyingyi55df5212013-03-24 07:20:08 +0000213 <artifactId>hyracks-api</artifactId>
Ian Maxond4daeb42015-09-15 14:31:32 -0700214 <version>0.2.17-SNAPSHOT</version>
buyingyi55df5212013-03-24 07:20:08 +0000215 <scope>compile</scope>
216 </dependency>
217 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -0700218 <groupId>org.apache.hyracks</groupId>
buyingyi55df5212013-03-24 07:20:08 +0000219 <artifactId>hyracks-dataflow-std</artifactId>
Ian Maxond4daeb42015-09-15 14:31:32 -0700220 <version>0.2.17-SNAPSHOT</version>
buyingyi55df5212013-03-24 07:20:08 +0000221 <scope>compile</scope>
222 </dependency>
223 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -0700224 <groupId>org.apache.hyracks</groupId>
buyingyi55df5212013-03-24 07:20:08 +0000225 <artifactId>hyracks-dataflow-common</artifactId>
Ian Maxond4daeb42015-09-15 14:31:32 -0700226 <version>0.2.17-SNAPSHOT</version>
buyingyi55df5212013-03-24 07:20:08 +0000227 <scope>compile</scope>
228 </dependency>
229 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -0700230 <groupId>org.apache.hyracks</groupId>
buyingyi55df5212013-03-24 07:20:08 +0000231 <artifactId>hyracks-control-cc</artifactId>
Ian Maxond4daeb42015-09-15 14:31:32 -0700232 <version>0.2.17-SNAPSHOT</version>
buyingyi55df5212013-03-24 07:20:08 +0000233 <scope>test</scope>
234 </dependency>
235 <dependency>
Ian Maxone915e8c2015-07-01 17:03:31 -0700236 <groupId>org.apache.hyracks</groupId>
buyingyi55df5212013-03-24 07:20:08 +0000237 <artifactId>hyracks-control-nc</artifactId>
Ian Maxond4daeb42015-09-15 14:31:32 -0700238 <version>0.2.17-SNAPSHOT</version>
buyingyi55df5212013-03-24 07:20:08 +0000239 <scope>test</scope>
240 </dependency>
241 <dependency>
242 <groupId>org.apache.commons</groupId>
243 <artifactId>commons-io</artifactId>
244 <version>1.3.2</version>
245 <scope>test</scope>
246 </dependency>
247 </dependencies>
248</project>