blob: 4ba19e0f60f7cf2b71ade5ceac59ebb06328a572 [file] [log] [blame]
buyingyi55df5212013-03-24 07:20:08 +00001<?xml version="1.0"?>
buyingyi2a8f4332013-08-09 12:46:49 -07002<!-- ! Copyright 2009-2013 by The Regents of the University of California
3 ! Licensed under the Apache License, Version 2.0 (the "License"); ! you may
4 not use this file except in compliance with the License. ! you may obtain
5 a copy of the License from ! ! http://www.apache.org/licenses/LICENSE-2.0
6 ! ! Unless required by applicable law or agreed to in writing, software !
7 distributed under the License is distributed on an "AS IS" BASIS, ! WITHOUT
8 WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! See the
9 License for the specific language governing permissions and ! limitations
10 under the License. ! -->
Vinayak Borkar9c832002013-12-11 12:08:57 -080011<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 +000012 <modelVersion>4.0.0</modelVersion>
13 <artifactId>hyracks-hdfs-core</artifactId>
14 <name>hyracks-hdfs-core</name>
15 <parent>
16 <artifactId>hyracks-hdfs</artifactId>
17 <groupId>edu.uci.ics.hyracks</groupId>
Ian Maxon0c62ede2015-02-17 20:47:14 -080018 <version>0.2.15</version>
buyingyi55df5212013-03-24 07:20:08 +000019 </parent>
20
21 <build>
22 <plugins>
23 <plugin>
24 <groupId>org.apache.maven.plugins</groupId>
25 <artifactId>maven-compiler-plugin</artifactId>
26 <version>2.0.2</version>
27 <configuration>
28 <source>1.7</source>
29 <target>1.7</target>
30 <fork>true</fork>
31 </configuration>
32 </plugin>
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>
75 <groupId>edu.uci.ics.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>
94 <groupId>edu.uci.ics.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>
114 <groupId>edu.uci.ics.hyracks</groupId>
115 <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>
133 <groupId>edu.uci.ics.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>
152 <groupId>edu.uci.ics.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>
171 <groupId>edu.uci.ics.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>
190 <groupId>edu.uci.ics.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>
buyingyi55df5212013-03-24 07:20:08 +0000202 <groupId>edu.uci.ics.hyracks</groupId>
203 <artifactId>hyracks-api</artifactId>
Ian Maxon0c62ede2015-02-17 20:47:14 -0800204 <version>0.2.15</version>
buyingyi55df5212013-03-24 07:20:08 +0000205 <scope>compile</scope>
206 </dependency>
207 <dependency>
208 <groupId>edu.uci.ics.hyracks</groupId>
209 <artifactId>hyracks-dataflow-std</artifactId>
Ian Maxon0c62ede2015-02-17 20:47:14 -0800210 <version>0.2.15</version>
buyingyi55df5212013-03-24 07:20:08 +0000211 <scope>compile</scope>
212 </dependency>
213 <dependency>
214 <groupId>edu.uci.ics.hyracks</groupId>
215 <artifactId>hyracks-dataflow-common</artifactId>
Ian Maxon0c62ede2015-02-17 20:47:14 -0800216 <version>0.2.15</version>
buyingyi55df5212013-03-24 07:20:08 +0000217 <scope>compile</scope>
218 </dependency>
219 <dependency>
220 <groupId>edu.uci.ics.hyracks</groupId>
221 <artifactId>hyracks-control-cc</artifactId>
Ian Maxon0c62ede2015-02-17 20:47:14 -0800222 <version>0.2.15</version>
buyingyi55df5212013-03-24 07:20:08 +0000223 <scope>test</scope>
224 </dependency>
225 <dependency>
226 <groupId>edu.uci.ics.hyracks</groupId>
227 <artifactId>hyracks-control-nc</artifactId>
Ian Maxon0c62ede2015-02-17 20:47:14 -0800228 <version>0.2.15</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>