blob: d9fe64d8c7ac874e41acb46d3c79b4e62768c3cd [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>
Vinayak Borkar9c832002013-12-11 12:08:57 -080018 <version>0.2.10</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>
34 <groupId>org.apache.maven.plugins</groupId>
35 <artifactId>maven-surefire-plugin</artifactId>
36 <version>2.7.2</version>
37 <configuration>
38 <forkMode>pertest</forkMode>
39 <includes>
40 <include>**/*TestSuite.java</include>
41 <include>**/*Test.java</include>
42 </includes>
43 </configuration>
44 </plugin>
45 <plugin>
46 <artifactId>maven-clean-plugin</artifactId>
47 <version>2.5</version>
48 <configuration>
49 <filesets>
50 <fileset>
51 <directory>.</directory>
52 <includes>
53 <include>edu*</include>
54 <include>actual*</include>
55 <include>build*</include>
56 <include>expect*</include>
57 <include>ClusterController*</include>
58 <include>edu.uci.*</include>
59 </includes>
60 </fileset>
61 </filesets>
62 </configuration>
63 </plugin>
buyingyi2a8f4332013-08-09 12:46:49 -070064 <plugin>
65 <groupId>org.apache.maven.plugins</groupId>
66 <artifactId>maven-jar-plugin</artifactId>
67 <version>2.2</version>
68 <executions>
69 <execution>
70 <goals>
71 <goal>test-jar</goal>
72 </goals>
73 </execution>
74 </executions>
75 </plugin>
buyingyi55df5212013-03-24 07:20:08 +000076 </plugins>
77 </build>
78
79 <profiles>
80 <profile>
81 <activation>
82 <activeByDefault>true</activeByDefault>
83 </activation>
84 <id>hadoop-0.20.2</id>
85 <dependencies>
86 <dependency>
87 <groupId>edu.uci.ics.hyracks</groupId>
88 <artifactId>hyracks-hdfs-0.20.2</artifactId>
buyingyief88ddb2013-03-25 02:57:39 +000089 <version>${project.version}</version>
buyingyi55df5212013-03-24 07:20:08 +000090 <type>jar</type>
91 <scope>compile</scope>
92 </dependency>
93 </dependencies>
94 </profile>
95 <profile>
96 <activation>
97 <activeByDefault>false</activeByDefault>
98 <property>
99 <name>hadoop</name>
100 <value>1.0.4</value>
101 </property>
102 </activation>
103 <id>hadoop-1.0.4</id>
104 <dependencies>
105 <dependency>
106 <groupId>edu.uci.ics.hyracks</groupId>
107 <artifactId>hyracks-hdfs-0.20.2</artifactId>
buyingyief88ddb2013-03-25 02:57:39 +0000108 <version>${project.version}</version>
buyingyi55df5212013-03-24 07:20:08 +0000109 <type>jar</type>
110 <scope>compile</scope>
111 </dependency>
112 </dependencies>
113 </profile>
114 <profile>
115 <activation>
116 <activeByDefault>false</activeByDefault>
117 <property>
118 <name>hadoop</name>
119 <value>0.23.1</value>
120 </property>
121 </activation>
122 <id>hadoop-0.23.1</id>
123 <dependencies>
124 <dependency>
125 <groupId>edu.uci.ics.hyracks</groupId>
126 <artifactId>hyracks-hdfs-0.23.1</artifactId>
buyingyief88ddb2013-03-25 02:57:39 +0000127 <version>${project.version}</version>
buyingyi55df5212013-03-24 07:20:08 +0000128 <type>jar</type>
129 <scope>compile</scope>
130 </dependency>
131 </dependencies>
132 </profile>
133 <profile>
134 <activation>
135 <activeByDefault>false</activeByDefault>
136 <property>
137 <name>hadoop</name>
138 <value>0.23.6</value>
139 </property>
140 </activation>
141 <id>hadoop-0.23.6</id>
142 <dependencies>
143 <dependency>
144 <groupId>edu.uci.ics.hyracks</groupId>
145 <artifactId>hyracks-hdfs-0.23.1</artifactId>
buyingyief88ddb2013-03-25 02:57:39 +0000146 <version>${project.version}</version>
buyingyi55df5212013-03-24 07:20:08 +0000147 <type>jar</type>
148 <scope>compile</scope>
149 </dependency>
150 </dependencies>
151 </profile>
152 <profile>
153 <activation>
154 <activeByDefault>false</activeByDefault>
155 <property>
156 <name>hadoop</name>
157 <value>cdh-4.1</value>
158 </property>
159 </activation>
160 <id>cdh-4.1</id>
161 <dependencies>
162 <dependency>
163 <groupId>edu.uci.ics.hyracks</groupId>
164 <artifactId>hyracks-hdfs-0.23.1</artifactId>
buyingyief88ddb2013-03-25 02:57:39 +0000165 <version>${project.version}</version>
buyingyi55df5212013-03-24 07:20:08 +0000166 <type>jar</type>
167 <scope>compile</scope>
168 </dependency>
169 </dependencies>
170 </profile>
171 <profile>
172 <activation>
173 <activeByDefault>false</activeByDefault>
174 <property>
175 <name>hadoop</name>
176 <value>cdh-4.2</value>
177 </property>
178 </activation>
179 <id>cdh-4.2</id>
180 <dependencies>
181 <dependency>
182 <groupId>edu.uci.ics.hyracks</groupId>
183 <artifactId>hyracks-hdfs-0.23.1</artifactId>
buyingyief88ddb2013-03-25 02:57:39 +0000184 <version>${project.version}</version>
buyingyi55df5212013-03-24 07:20:08 +0000185 <type>jar</type>
186 <scope>compile</scope>
187 </dependency>
188 </dependencies>
189 </profile>
190 </profiles>
191
192 <dependencies>
193 <dependency>
194 <groupId>junit</groupId>
195 <artifactId>junit</artifactId>
196 <version>3.8.1</version>
197 <scope>test</scope>
198 </dependency>
199 <dependency>
200 <groupId>edu.uci.ics.hyracks</groupId>
201 <artifactId>hyracks-api</artifactId>
Vinayak Borkar9c832002013-12-11 12:08:57 -0800202 <version>0.2.10</version>
buyingyi55df5212013-03-24 07:20:08 +0000203 <scope>compile</scope>
204 </dependency>
205 <dependency>
206 <groupId>edu.uci.ics.hyracks</groupId>
207 <artifactId>hyracks-dataflow-std</artifactId>
Vinayak Borkar9c832002013-12-11 12:08:57 -0800208 <version>0.2.10</version>
buyingyi55df5212013-03-24 07:20:08 +0000209 <scope>compile</scope>
210 </dependency>
211 <dependency>
212 <groupId>edu.uci.ics.hyracks</groupId>
213 <artifactId>hyracks-dataflow-common</artifactId>
Vinayak Borkar9c832002013-12-11 12:08:57 -0800214 <version>0.2.10</version>
buyingyi55df5212013-03-24 07:20:08 +0000215 <scope>compile</scope>
216 </dependency>
217 <dependency>
218 <groupId>edu.uci.ics.hyracks</groupId>
219 <artifactId>hyracks-control-cc</artifactId>
Vinayak Borkar9c832002013-12-11 12:08:57 -0800220 <version>0.2.10</version>
buyingyi55df5212013-03-24 07:20:08 +0000221 <scope>test</scope>
222 </dependency>
223 <dependency>
224 <groupId>edu.uci.ics.hyracks</groupId>
225 <artifactId>hyracks-control-nc</artifactId>
Vinayak Borkar9c832002013-12-11 12:08:57 -0800226 <version>0.2.10</version>
buyingyi55df5212013-03-24 07:20:08 +0000227 <scope>test</scope>
228 </dependency>
229 <dependency>
230 <groupId>org.apache.commons</groupId>
231 <artifactId>commons-io</artifactId>
232 <version>1.3.2</version>
233 <scope>test</scope>
234 </dependency>
235 </dependencies>
236</project>