blob: 34400b6372ee70691da104dabb5f3787bcc14779 [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-0.23.1</artifactId>
19 <name>hyracks-hdfs-0.23.1</name>
20 <parent>
21 <artifactId>hyracks-hdfs</artifactId>
22 <groupId>edu.uci.ics.hyracks</groupId>
Vinayak Borkar706863b2013-06-05 23:16:52 -070023 <version>0.2.7-SNAPSHOT</version>
buyingyi55df5212013-03-24 07:20:08 +000024 </parent>
25 <build>
26 <plugins>
27 <plugin>
28 <groupId>org.apache.maven.plugins</groupId>
29 <artifactId>maven-compiler-plugin</artifactId>
30 <version>2.0.2</version>
31 <configuration>
32 <source>1.7</source>
33 <target>1.7</target>
34 <fork>true</fork>
35 </configuration>
36 </plugin>
37 <plugin>
38 <groupId>org.apache.maven.plugins</groupId>
39 <artifactId>maven-surefire-plugin</artifactId>
40 <version>2.7.2</version>
41 <configuration>
42 <forkMode>pertest</forkMode>
43 <includes>
44 <include>**/*TestSuite.java</include>
45 <include>**/*Test.java</include>
46 </includes>
47 </configuration>
48 </plugin>
49 </plugins>
50 </build>
51
52 <profiles>
53 <profile>
54 <activation>
55 <activeByDefault>true</activeByDefault>
56 <property>
57 <name>hadoop</name>
58 <value>0.23.1</value>
59 </property>
60 </activation>
61 <id>hadoop-0.23.1</id>
62 <dependencies>
63 <dependency>
64 <groupId>org.apache.hadoop</groupId>
65 <artifactId>hadoop-common</artifactId>
66 <version>0.23.1</version>
67 <type>jar</type>
68 <scope>compile</scope>
69 </dependency>
70 <dependency>
71 <groupId>org.apache.hadoop</groupId>
72 <artifactId>hadoop-mapreduce-client-core</artifactId>
73 <version>0.23.1</version>
74 <type>jar</type>
75 <scope>compile</scope>
76 </dependency>
77 <dependency>
78 <groupId>org.apache.hadoop</groupId>
79 <artifactId>hadoop-hdfs</artifactId>
80 <version>0.23.1</version>
81 <type>jar</type>
82 <scope>compile</scope>
83 </dependency>
84 <dependency>
85 <groupId>org.apache.hadoop</groupId>
86 <artifactId>hadoop-minicluster</artifactId>
87 <version>0.23.1</version>
88 <type>jar</type>
89 <scope>compile</scope>
90 </dependency>
91 </dependencies>
92 </profile>
93 <profile>
94 <id>hadoop-0.23.6</id>
95 <activation>
96 <activeByDefault>false</activeByDefault>
97 <property>
98 <name>hadoop</name>
99 <value>0.23.6</value>
100 </property>
101 </activation>
102 <dependencies>
103 <dependency>
104 <groupId>org.apache.hadoop</groupId>
105 <artifactId>hadoop-common</artifactId>
106 <version>0.23.6</version>
107 <type>jar</type>
108 <scope>compile</scope>
109 </dependency>
110 <dependency>
111 <groupId>org.apache.hadoop</groupId>
112 <artifactId>hadoop-mapreduce-client-core</artifactId>
113 <version>0.23.6</version>
114 <type>jar</type>
115 <scope>compile</scope>
116 </dependency>
117 <dependency>
118 <groupId>org.apache.hadoop</groupId>
119 <artifactId>hadoop-hdfs</artifactId>
120 <version>0.23.6</version>
121 <type>jar</type>
122 <scope>compile</scope>
123 </dependency>
124 <dependency>
125 <groupId>org.apache.hadoop</groupId>
126 <artifactId>hadoop-minicluster</artifactId>
127 <version>0.23.6</version>
128 <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>cdh-4.2</value>
139 </property>
140 </activation>
141 <id>cdh-4.2</id>
142 <dependencies>
143 <dependency>
144 <groupId>org.apache.hadoop</groupId>
145 <artifactId>hadoop-common</artifactId>
146 <version>2.0.0-cdh4.2.0</version>
147 <type>jar</type>
148 <scope>compile</scope>
149 </dependency>
150 <dependency>
151 <groupId>org.apache.hadoop</groupId>
152 <artifactId>hadoop-mapreduce-client-core</artifactId>
153 <version>2.0.0-cdh4.2.0</version>
154 <type>jar</type>
155 <scope>compile</scope>
156 </dependency>
157 <dependency>
158 <groupId>org.apache.hadoop</groupId>
159 <artifactId>hadoop-hdfs</artifactId>
160 <version>2.0.0-cdh4.2.0</version>
161 <type>jar</type>
162 <scope>compile</scope>
163 </dependency>
164 <dependency>
165 <groupId>org.apache.hadoop</groupId>
166 <artifactId>hadoop-minicluster</artifactId>
167 <version>2.0.0-cdh4.2.0</version>
168 <type>jar</type>
169 <scope>compile</scope>
170 </dependency>
171 </dependencies>
172 </profile>
173 <profile>
174 <activation>
175 <activeByDefault>false</activeByDefault>
176 <property>
177 <name>hadoop</name>
178 <value>cdh-4.1</value>
179 </property>
180 </activation>
181 <id>cdh-4.1</id>
182 <dependencies>
183 <dependency>
184 <groupId>org.apache.hadoop</groupId>
185 <artifactId>hadoop-common</artifactId>
186 <version>2.0.0-cdh4.1.0</version>
187 <type>jar</type>
188 <scope>compile</scope>
189 </dependency>
190 <dependency>
191 <groupId>org.apache.hadoop</groupId>
192 <artifactId>hadoop-mapreduce-client-core</artifactId>
193 <version>2.0.0-cdh4.1.0</version>
194 <type>jar</type>
195 <scope>compile</scope>
196 </dependency>
197 <dependency>
198 <groupId>org.apache.hadoop</groupId>
199 <artifactId>hadoop-hdfs</artifactId>
200 <version>2.0.0-cdh4.1.0</version>
201 <type>jar</type>
202 <scope>compile</scope>
203 </dependency>
204 <dependency>
205 <groupId>org.apache.hadoop</groupId>
206 <artifactId>hadoop-minicluster</artifactId>
207 <version>2.0.0-cdh4.1.0</version>
208 <type>jar</type>
209 <scope>compile</scope>
210 </dependency>
211 </dependencies>
212 </profile>
213 </profiles>
214
215 <dependencies>
216 <dependency>
217 <groupId>edu.uci.ics.hyracks</groupId>
218 <artifactId>hyracks-api</artifactId>
Vinayak Borkar706863b2013-06-05 23:16:52 -0700219 <version>0.2.7-SNAPSHOT</version>
buyingyi55df5212013-03-24 07:20:08 +0000220 <type>jar</type>
221 <scope>compile</scope>
222 </dependency>
223 </dependencies>
224
225 <repositories>
226 <repository>
227 <id>cloudera</id>
228 <url>https://repository.cloudera.com/artifactory/cloudera-repos/</url>
229 </repository>
230 </repositories>
231</project>