blob: 3fd445d41b5d559aa57807e079f69963895ef5bb [file] [log] [blame]
buyingyi55df5212013-03-24 07:20:08 +00001<?xml version="1.0"?>
Till Westmann276bbc22013-06-05 18:56:27 -07002<!--
3 ! Copyright 2009-2013 by The Regents of the University of California
4 ! Licensed under the Apache License, Version 2.0 (the "License");
5 ! you may not use this file except in compliance with the License.
6 ! you may obtain a copy of the License from
7 !
8 ! http://www.apache.org/licenses/LICENSE-2.0
9 !
10 ! Unless required by applicable law or agreed to in writing, software
11 ! distributed under the License is distributed on an "AS IS" BASIS,
12 ! WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 ! See the License for the specific language governing permissions and
14 ! limitations under the License.
15 !-->
vinayakb1ca34f42013-03-25 03:17:01 +000016<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 +000017 <modelVersion>4.0.0</modelVersion>
18 <artifactId>hyracks-hdfs-core</artifactId>
19 <name>hyracks-hdfs-core</name>
20 <parent>
21 <artifactId>hyracks-hdfs</artifactId>
22 <groupId>edu.uci.ics.hyracks</groupId>
buyingyiaeba25c2013-07-15 17:02:20 -070023 <version>0.2.9-SNAPSHOT</version>
buyingyi55df5212013-03-24 07:20:08 +000024 </parent>
25
26 <build>
27 <plugins>
28 <plugin>
29 <groupId>org.apache.maven.plugins</groupId>
30 <artifactId>maven-compiler-plugin</artifactId>
31 <version>2.0.2</version>
32 <configuration>
33 <source>1.7</source>
34 <target>1.7</target>
35 <fork>true</fork>
36 </configuration>
37 </plugin>
38 <plugin>
39 <groupId>org.apache.maven.plugins</groupId>
40 <artifactId>maven-surefire-plugin</artifactId>
41 <version>2.7.2</version>
42 <configuration>
43 <forkMode>pertest</forkMode>
44 <includes>
45 <include>**/*TestSuite.java</include>
46 <include>**/*Test.java</include>
47 </includes>
48 </configuration>
49 </plugin>
50 <plugin>
51 <artifactId>maven-clean-plugin</artifactId>
52 <version>2.5</version>
53 <configuration>
54 <filesets>
55 <fileset>
56 <directory>.</directory>
57 <includes>
58 <include>edu*</include>
59 <include>actual*</include>
60 <include>build*</include>
61 <include>expect*</include>
62 <include>ClusterController*</include>
63 <include>edu.uci.*</include>
64 </includes>
65 </fileset>
66 </filesets>
67 </configuration>
68 </plugin>
69 </plugins>
70 </build>
71
72 <profiles>
73 <profile>
74 <activation>
75 <activeByDefault>true</activeByDefault>
76 </activation>
77 <id>hadoop-0.20.2</id>
78 <dependencies>
79 <dependency>
80 <groupId>edu.uci.ics.hyracks</groupId>
81 <artifactId>hyracks-hdfs-0.20.2</artifactId>
buyingyief88ddb2013-03-25 02:57:39 +000082 <version>${project.version}</version>
buyingyi55df5212013-03-24 07:20:08 +000083 <type>jar</type>
84 <scope>compile</scope>
85 </dependency>
86 </dependencies>
87 </profile>
88 <profile>
89 <activation>
90 <activeByDefault>false</activeByDefault>
91 <property>
92 <name>hadoop</name>
93 <value>1.0.4</value>
94 </property>
95 </activation>
96 <id>hadoop-1.0.4</id>
97 <dependencies>
98 <dependency>
99 <groupId>edu.uci.ics.hyracks</groupId>
100 <artifactId>hyracks-hdfs-0.20.2</artifactId>
buyingyief88ddb2013-03-25 02:57:39 +0000101 <version>${project.version}</version>
buyingyi55df5212013-03-24 07:20:08 +0000102 <type>jar</type>
103 <scope>compile</scope>
104 </dependency>
105 </dependencies>
106 </profile>
107 <profile>
108 <activation>
109 <activeByDefault>false</activeByDefault>
110 <property>
111 <name>hadoop</name>
112 <value>0.23.1</value>
113 </property>
114 </activation>
115 <id>hadoop-0.23.1</id>
116 <dependencies>
117 <dependency>
118 <groupId>edu.uci.ics.hyracks</groupId>
119 <artifactId>hyracks-hdfs-0.23.1</artifactId>
buyingyief88ddb2013-03-25 02:57:39 +0000120 <version>${project.version}</version>
buyingyi55df5212013-03-24 07:20:08 +0000121 <type>jar</type>
122 <scope>compile</scope>
123 </dependency>
124 </dependencies>
125 </profile>
126 <profile>
127 <activation>
128 <activeByDefault>false</activeByDefault>
129 <property>
130 <name>hadoop</name>
131 <value>0.23.6</value>
132 </property>
133 </activation>
134 <id>hadoop-0.23.6</id>
135 <dependencies>
136 <dependency>
137 <groupId>edu.uci.ics.hyracks</groupId>
138 <artifactId>hyracks-hdfs-0.23.1</artifactId>
buyingyief88ddb2013-03-25 02:57:39 +0000139 <version>${project.version}</version>
buyingyi55df5212013-03-24 07:20:08 +0000140 <type>jar</type>
141 <scope>compile</scope>
142 </dependency>
143 </dependencies>
144 </profile>
145 <profile>
146 <activation>
147 <activeByDefault>false</activeByDefault>
148 <property>
149 <name>hadoop</name>
150 <value>cdh-4.1</value>
151 </property>
152 </activation>
153 <id>cdh-4.1</id>
154 <dependencies>
155 <dependency>
156 <groupId>edu.uci.ics.hyracks</groupId>
157 <artifactId>hyracks-hdfs-0.23.1</artifactId>
buyingyief88ddb2013-03-25 02:57:39 +0000158 <version>${project.version}</version>
buyingyi55df5212013-03-24 07:20:08 +0000159 <type>jar</type>
160 <scope>compile</scope>
161 </dependency>
162 </dependencies>
163 </profile>
164 <profile>
165 <activation>
166 <activeByDefault>false</activeByDefault>
167 <property>
168 <name>hadoop</name>
169 <value>cdh-4.2</value>
170 </property>
171 </activation>
172 <id>cdh-4.2</id>
173 <dependencies>
174 <dependency>
175 <groupId>edu.uci.ics.hyracks</groupId>
176 <artifactId>hyracks-hdfs-0.23.1</artifactId>
buyingyief88ddb2013-03-25 02:57:39 +0000177 <version>${project.version}</version>
buyingyi55df5212013-03-24 07:20:08 +0000178 <type>jar</type>
179 <scope>compile</scope>
180 </dependency>
181 </dependencies>
182 </profile>
183 </profiles>
184
185 <dependencies>
186 <dependency>
187 <groupId>junit</groupId>
188 <artifactId>junit</artifactId>
189 <version>3.8.1</version>
190 <scope>test</scope>
191 </dependency>
192 <dependency>
193 <groupId>edu.uci.ics.hyracks</groupId>
194 <artifactId>hyracks-api</artifactId>
buyingyiaeba25c2013-07-15 17:02:20 -0700195 <version>0.2.9-SNAPSHOT</version>
buyingyi55df5212013-03-24 07:20:08 +0000196 <scope>compile</scope>
197 </dependency>
198 <dependency>
199 <groupId>edu.uci.ics.hyracks</groupId>
200 <artifactId>hyracks-dataflow-std</artifactId>
buyingyiaeba25c2013-07-15 17:02:20 -0700201 <version>0.2.9-SNAPSHOT</version>
buyingyi55df5212013-03-24 07:20:08 +0000202 <scope>compile</scope>
203 </dependency>
204 <dependency>
205 <groupId>edu.uci.ics.hyracks</groupId>
206 <artifactId>hyracks-dataflow-common</artifactId>
buyingyiaeba25c2013-07-15 17:02:20 -0700207 <version>0.2.9-SNAPSHOT</version>
buyingyi55df5212013-03-24 07:20:08 +0000208 <scope>compile</scope>
209 </dependency>
210 <dependency>
211 <groupId>edu.uci.ics.hyracks</groupId>
212 <artifactId>hyracks-control-cc</artifactId>
buyingyiaeba25c2013-07-15 17:02:20 -0700213 <version>0.2.9-SNAPSHOT</version>
buyingyi55df5212013-03-24 07:20:08 +0000214 <scope>test</scope>
215 </dependency>
216 <dependency>
217 <groupId>edu.uci.ics.hyracks</groupId>
218 <artifactId>hyracks-control-nc</artifactId>
buyingyiaeba25c2013-07-15 17:02:20 -0700219 <version>0.2.9-SNAPSHOT</version>
buyingyi55df5212013-03-24 07:20:08 +0000220 <scope>test</scope>
221 </dependency>
222 <dependency>
223 <groupId>org.apache.commons</groupId>
224 <artifactId>commons-io</artifactId>
225 <version>1.3.2</version>
226 <scope>test</scope>
227 </dependency>
228 </dependencies>
229</project>