blob: dbe98588dbeb9210c60e7ba879207917c1916dcb [file] [log] [blame]
Till Westmann276bbc22013-06-05 18:56:27 -07001<!--
Ian Maxond8857792015-09-11 14:19:53 -07002 ! Licensed to the Apache Software Foundation (ASF) under one
3 ! or more contributor license agreements. See the NOTICE file
4 ! distributed with this work for additional information
5 ! regarding copyright ownership. The ASF licenses this file
6 ! to you under the Apache License, Version 2.0 (the
7 ! "License"); you may not use this file except in compliance
8 ! with the License. You may obtain a copy of the License at
9 !
10 ! http://www.apache.org/licenses/LICENSE-2.0
11 !
12 ! Unless required by applicable law or agreed to in writing,
13 ! software distributed under the License is distributed on an
14 ! "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 ! KIND, either express or implied. See the License for the
16 ! specific language governing permissions and limitations
17 ! under the License.
Till Westmann276bbc22013-06-05 18:56:27 -070018 !-->
Ian Maxond8857792015-09-11 14:19:53 -070019
vinayakb1ca34f42013-03-25 03:17:01 +000020<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">
Michael Blowb4c1fb02016-05-09 15:41:00 -070021 <modelVersion>4.0.0</modelVersion>
22 <artifactId>hyracks-hdfs-2.x</artifactId>
23 <name>hyracks-hdfs-2.x</name>
24 <parent>
25 <artifactId>hyracks-hdfs</artifactId>
26 <groupId>org.apache.hyracks</groupId>
27 <version>0.2.18-SNAPSHOT</version>
28 </parent>
29 <properties>
30 <root.dir>${basedir}/../../..</root.dir>
31 </properties>
buyingyi55df5212013-03-24 07:20:08 +000032
Michael Blow5ab717c2016-10-05 11:53:37 -040033 <build>
34 <plugins>
35 <plugin>
36 <groupId>org.apache.maven.plugins</groupId>
37 <artifactId>maven-jar-plugin</artifactId>
38 <version>2.4</version>
39 <executions>
40 <execution>
41 <goals>
42 <goal>test-jar</goal>
43 </goals>
44 </execution>
45 </executions>
46 </plugin>
47 </plugins>
48 </build>
49
Michael Blowb4c1fb02016-05-09 15:41:00 -070050 <profiles>
51 <profile>
52 <activation>
53 <activeByDefault>true</activeByDefault>
54 <property>
55 <name>hadoop</name>
56 <value>2.2.0</value>
57 </property>
58 </activation>
59 <id>hadoop-2.2.0</id>
60 <dependencies>
61 <dependency>
62 <groupId>org.apache.hadoop</groupId>
63 <artifactId>hadoop-common</artifactId>
64 <type>jar</type>
65 <scope>compile</scope>
66 </dependency>
67 <dependency>
68 <groupId>org.apache.hadoop</groupId>
69 <artifactId>hadoop-mapreduce-client-core</artifactId>
70 <type>jar</type>
71 <scope>compile</scope>
72 </dependency>
73 <dependency>
74 <groupId>org.apache.hadoop</groupId>
75 <artifactId>hadoop-hdfs</artifactId>
76 <type>jar</type>
77 <scope>compile</scope>
78 </dependency>
79 <dependency>
80 <groupId>org.apache.hadoop</groupId>
81 <artifactId>hadoop-minicluster</artifactId>
82 <type>jar</type>
Michael Blow5ab717c2016-10-05 11:53:37 -040083 <scope>test</scope>
Michael Blowb4c1fb02016-05-09 15:41:00 -070084 </dependency>
85 </dependencies>
86 </profile>
87 <profile>
88 <activation>
89 <activeByDefault>true</activeByDefault>
90 <property>
91 <name>hadoop</name>
92 <value>0.23.1</value>
93 </property>
94 </activation>
95 <id>hadoop-0.23.1</id>
96 <dependencies>
97 <dependency>
98 <groupId>org.apache.hadoop</groupId>
99 <artifactId>hadoop-common</artifactId>
100 <type>jar</type>
101 <scope>compile</scope>
102 </dependency>
103 <dependency>
104 <groupId>org.apache.hadoop</groupId>
105 <artifactId>hadoop-mapreduce-client-core</artifactId>
106 <type>jar</type>
107 <scope>compile</scope>
108 </dependency>
109 <dependency>
110 <groupId>org.apache.hadoop</groupId>
111 <artifactId>hadoop-hdfs</artifactId>
112 <type>jar</type>
113 <scope>compile</scope>
114 </dependency>
115 <dependency>
116 <groupId>org.apache.hadoop</groupId>
117 <artifactId>hadoop-minicluster</artifactId>
118 <type>jar</type>
Michael Blow5ab717c2016-10-05 11:53:37 -0400119 <scope>test</scope>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700120 </dependency>
121 </dependencies>
122 </profile>
123 <profile>
124 <id>hadoop-0.23.6</id>
125 <activation>
126 <activeByDefault>false</activeByDefault>
127 <property>
128 <name>hadoop</name>
129 <value>0.23.6</value>
130 </property>
131 </activation>
132 <dependencies>
133 <dependency>
134 <groupId>org.apache.hadoop</groupId>
135 <artifactId>hadoop-common</artifactId>
136 <version>0.23.6</version>
137 <type>jar</type>
138 <scope>compile</scope>
139 </dependency>
140 <dependency>
141 <groupId>org.apache.hadoop</groupId>
142 <artifactId>hadoop-mapreduce-client-core</artifactId>
143 <version>0.23.6</version>
144 <type>jar</type>
145 <scope>compile</scope>
146 </dependency>
147 <dependency>
148 <groupId>org.apache.hadoop</groupId>
149 <artifactId>hadoop-hdfs</artifactId>
150 <version>0.23.6</version>
151 <type>jar</type>
152 <scope>compile</scope>
153 </dependency>
154 <dependency>
155 <groupId>org.apache.hadoop</groupId>
156 <artifactId>hadoop-minicluster</artifactId>
157 <version>0.23.6</version>
158 <type>jar</type>
Michael Blow5ab717c2016-10-05 11:53:37 -0400159 <scope>test</scope>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700160 </dependency>
161 </dependencies>
162 </profile>
163 <profile>
164 <activation>
165 <activeByDefault>false</activeByDefault>
166 <property>
167 <name>hadoop</name>
168 <value>cdh-4.2</value>
169 </property>
170 </activation>
171 <id>cdh-4.2</id>
172 <dependencies>
173 <dependency>
174 <groupId>org.apache.hadoop</groupId>
175 <artifactId>hadoop-common</artifactId>
176 <version>2.0.0-cdh4.2.0</version>
177 <type>jar</type>
178 <scope>compile</scope>
179 </dependency>
180 <dependency>
181 <groupId>org.apache.hadoop</groupId>
182 <artifactId>hadoop-mapreduce-client-core</artifactId>
183 <version>2.0.0-cdh4.2.0</version>
184 <type>jar</type>
185 <scope>compile</scope>
186 </dependency>
187 <dependency>
188 <groupId>org.apache.hadoop</groupId>
189 <artifactId>hadoop-hdfs</artifactId>
190 <version>2.0.0-cdh4.2.0</version>
191 <type>jar</type>
192 <scope>compile</scope>
193 </dependency>
194 <dependency>
195 <groupId>org.apache.hadoop</groupId>
196 <artifactId>hadoop-minicluster</artifactId>
197 <version>2.0.0-cdh4.2.0</version>
198 <type>jar</type>
Michael Blow5ab717c2016-10-05 11:53:37 -0400199 <scope>test</scope>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700200 </dependency>
201 </dependencies>
202 </profile>
203 <profile>
204 <activation>
205 <activeByDefault>false</activeByDefault>
206 <property>
207 <name>hadoop</name>
208 <value>cdh-4.1</value>
209 </property>
210 </activation>
211 <id>cdh-4.1</id>
212 <dependencies>
213 <dependency>
214 <groupId>org.apache.hadoop</groupId>
215 <artifactId>hadoop-common</artifactId>
216 <version>2.0.0-cdh4.1.0</version>
217 <type>jar</type>
218 <scope>compile</scope>
219 </dependency>
220 <dependency>
221 <groupId>org.apache.hadoop</groupId>
222 <artifactId>hadoop-mapreduce-client-core</artifactId>
223 <version>2.0.0-cdh4.1.0</version>
224 <type>jar</type>
225 <scope>compile</scope>
226 </dependency>
227 <dependency>
228 <groupId>org.apache.hadoop</groupId>
229 <artifactId>hadoop-hdfs</artifactId>
230 <version>2.0.0-cdh4.1.0</version>
231 <type>jar</type>
232 <scope>compile</scope>
233 </dependency>
234 <dependency>
235 <groupId>org.apache.hadoop</groupId>
236 <artifactId>hadoop-minicluster</artifactId>
237 <version>2.0.0-cdh4.1.0</version>
238 <type>jar</type>
Michael Blow5ab717c2016-10-05 11:53:37 -0400239 <scope>test</scope>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700240 </dependency>
241 </dependencies>
242 </profile>
243 </profiles>
buyingyi55df5212013-03-24 07:20:08 +0000244
Michael Blowb4c1fb02016-05-09 15:41:00 -0700245 <dependencies>
246 <dependency>
247 <groupId>org.apache.hyracks</groupId>
248 <artifactId>hyracks-api</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400249 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700250 <type>jar</type>
251 <scope>compile</scope>
252 </dependency>
253 </dependencies>
buyingyi55df5212013-03-24 07:20:08 +0000254
Michael Blowb4c1fb02016-05-09 15:41:00 -0700255 <repositories>
256 <repository>
257 <id>cloudera</id>
258 <url>https://repository.cloudera.com/artifactory/cloudera-repos/</url>
259 </repository>
260 </repositories>
buyingyi55df5212013-03-24 07:20:08 +0000261</project>