blob: 13b3185467f12a76bf75e9f26f5b4bdb89094f61 [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>
Ian Maxon1f30d4e2014-09-19 15:58:43 -070023 <version>0.2.13</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>
buyingyi55df5212013-03-24 07:20:08 +000037 </plugins>
38 </build>
39
40 <profiles>
41 <profile>
42 <activation>
43 <activeByDefault>true</activeByDefault>
44 <property>
45 <name>hadoop</name>
46 <value>0.23.1</value>
47 </property>
48 </activation>
49 <id>hadoop-0.23.1</id>
50 <dependencies>
51 <dependency>
52 <groupId>org.apache.hadoop</groupId>
53 <artifactId>hadoop-common</artifactId>
54 <version>0.23.1</version>
55 <type>jar</type>
56 <scope>compile</scope>
57 </dependency>
58 <dependency>
59 <groupId>org.apache.hadoop</groupId>
60 <artifactId>hadoop-mapreduce-client-core</artifactId>
61 <version>0.23.1</version>
62 <type>jar</type>
63 <scope>compile</scope>
64 </dependency>
65 <dependency>
66 <groupId>org.apache.hadoop</groupId>
67 <artifactId>hadoop-hdfs</artifactId>
68 <version>0.23.1</version>
69 <type>jar</type>
70 <scope>compile</scope>
71 </dependency>
72 <dependency>
73 <groupId>org.apache.hadoop</groupId>
74 <artifactId>hadoop-minicluster</artifactId>
75 <version>0.23.1</version>
76 <type>jar</type>
77 <scope>compile</scope>
78 </dependency>
79 </dependencies>
80 </profile>
81 <profile>
82 <id>hadoop-0.23.6</id>
83 <activation>
84 <activeByDefault>false</activeByDefault>
85 <property>
86 <name>hadoop</name>
87 <value>0.23.6</value>
88 </property>
89 </activation>
90 <dependencies>
91 <dependency>
92 <groupId>org.apache.hadoop</groupId>
93 <artifactId>hadoop-common</artifactId>
94 <version>0.23.6</version>
95 <type>jar</type>
96 <scope>compile</scope>
97 </dependency>
98 <dependency>
99 <groupId>org.apache.hadoop</groupId>
100 <artifactId>hadoop-mapreduce-client-core</artifactId>
101 <version>0.23.6</version>
102 <type>jar</type>
103 <scope>compile</scope>
104 </dependency>
105 <dependency>
106 <groupId>org.apache.hadoop</groupId>
107 <artifactId>hadoop-hdfs</artifactId>
108 <version>0.23.6</version>
109 <type>jar</type>
110 <scope>compile</scope>
111 </dependency>
112 <dependency>
113 <groupId>org.apache.hadoop</groupId>
114 <artifactId>hadoop-minicluster</artifactId>
115 <version>0.23.6</version>
116 <type>jar</type>
117 <scope>compile</scope>
118 </dependency>
119 </dependencies>
120 </profile>
121 <profile>
122 <activation>
123 <activeByDefault>false</activeByDefault>
124 <property>
125 <name>hadoop</name>
126 <value>cdh-4.2</value>
127 </property>
128 </activation>
129 <id>cdh-4.2</id>
130 <dependencies>
131 <dependency>
132 <groupId>org.apache.hadoop</groupId>
133 <artifactId>hadoop-common</artifactId>
134 <version>2.0.0-cdh4.2.0</version>
135 <type>jar</type>
136 <scope>compile</scope>
137 </dependency>
138 <dependency>
139 <groupId>org.apache.hadoop</groupId>
140 <artifactId>hadoop-mapreduce-client-core</artifactId>
141 <version>2.0.0-cdh4.2.0</version>
142 <type>jar</type>
143 <scope>compile</scope>
144 </dependency>
145 <dependency>
146 <groupId>org.apache.hadoop</groupId>
147 <artifactId>hadoop-hdfs</artifactId>
148 <version>2.0.0-cdh4.2.0</version>
149 <type>jar</type>
150 <scope>compile</scope>
151 </dependency>
152 <dependency>
153 <groupId>org.apache.hadoop</groupId>
154 <artifactId>hadoop-minicluster</artifactId>
155 <version>2.0.0-cdh4.2.0</version>
156 <type>jar</type>
157 <scope>compile</scope>
158 </dependency>
159 </dependencies>
160 </profile>
161 <profile>
162 <activation>
163 <activeByDefault>false</activeByDefault>
164 <property>
165 <name>hadoop</name>
166 <value>cdh-4.1</value>
167 </property>
168 </activation>
169 <id>cdh-4.1</id>
170 <dependencies>
171 <dependency>
172 <groupId>org.apache.hadoop</groupId>
173 <artifactId>hadoop-common</artifactId>
174 <version>2.0.0-cdh4.1.0</version>
175 <type>jar</type>
176 <scope>compile</scope>
177 </dependency>
178 <dependency>
179 <groupId>org.apache.hadoop</groupId>
180 <artifactId>hadoop-mapreduce-client-core</artifactId>
181 <version>2.0.0-cdh4.1.0</version>
182 <type>jar</type>
183 <scope>compile</scope>
184 </dependency>
185 <dependency>
186 <groupId>org.apache.hadoop</groupId>
187 <artifactId>hadoop-hdfs</artifactId>
188 <version>2.0.0-cdh4.1.0</version>
189 <type>jar</type>
190 <scope>compile</scope>
191 </dependency>
192 <dependency>
193 <groupId>org.apache.hadoop</groupId>
194 <artifactId>hadoop-minicluster</artifactId>
195 <version>2.0.0-cdh4.1.0</version>
196 <type>jar</type>
197 <scope>compile</scope>
198 </dependency>
199 </dependencies>
200 </profile>
201 </profiles>
202
203 <dependencies>
204 <dependency>
205 <groupId>edu.uci.ics.hyracks</groupId>
206 <artifactId>hyracks-api</artifactId>
Ian Maxon1f30d4e2014-09-19 15:58:43 -0700207 <version>0.2.13</version>
buyingyi55df5212013-03-24 07:20:08 +0000208 <type>jar</type>
209 <scope>compile</scope>
210 </dependency>
211 </dependencies>
212
213 <repositories>
214 <repository>
215 <id>cloudera</id>
216 <url>https://repository.cloudera.com/artifactory/cloudera-repos/</url>
217 </repository>
218 </repositories>
219</project>