blob: 223e472e0a62262d60394044bed25b05efe37772 [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>
Ian Maxon9aa15832017-01-16 14:40:29 -080027 <version>0.2.19-SNAPSHOT</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070028 </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>
Michael Blowba358122016-10-13 19:56:03 -040076 <classifier>tests</classifier>
Michael Blow5ab717c2016-10-05 11:53:37 -040077 <scope>test</scope>
Michael Blowb4c1fb02016-05-09 15:41:00 -070078 </dependency>
79 </dependencies>
80 </profile>
81 <profile>
82 <activation>
83 <activeByDefault>true</activeByDefault>
84 <property>
85 <name>hadoop</name>
86 <value>0.23.1</value>
87 </property>
88 </activation>
89 <id>hadoop-0.23.1</id>
90 <dependencies>
91 <dependency>
92 <groupId>org.apache.hadoop</groupId>
93 <artifactId>hadoop-common</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -070094 </dependency>
95 <dependency>
96 <groupId>org.apache.hadoop</groupId>
97 <artifactId>hadoop-mapreduce-client-core</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -070098 </dependency>
99 </dependencies>
100 </profile>
101 <profile>
102 <id>hadoop-0.23.6</id>
103 <activation>
104 <activeByDefault>false</activeByDefault>
105 <property>
106 <name>hadoop</name>
107 <value>0.23.6</value>
108 </property>
109 </activation>
110 <dependencies>
111 <dependency>
112 <groupId>org.apache.hadoop</groupId>
113 <artifactId>hadoop-common</artifactId>
114 <version>0.23.6</version>
115 <type>jar</type>
116 <scope>compile</scope>
117 </dependency>
118 <dependency>
119 <groupId>org.apache.hadoop</groupId>
120 <artifactId>hadoop-mapreduce-client-core</artifactId>
121 <version>0.23.6</version>
122 <type>jar</type>
123 <scope>compile</scope>
124 </dependency>
125 <dependency>
126 <groupId>org.apache.hadoop</groupId>
127 <artifactId>hadoop-hdfs</artifactId>
128 <version>0.23.6</version>
129 <type>jar</type>
130 <scope>compile</scope>
131 </dependency>
132 <dependency>
133 <groupId>org.apache.hadoop</groupId>
134 <artifactId>hadoop-minicluster</artifactId>
135 <version>0.23.6</version>
136 <type>jar</type>
Michael Blow5ab717c2016-10-05 11:53:37 -0400137 <scope>test</scope>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700138 </dependency>
139 </dependencies>
140 </profile>
141 <profile>
142 <activation>
143 <activeByDefault>false</activeByDefault>
144 <property>
145 <name>hadoop</name>
146 <value>cdh-4.2</value>
147 </property>
148 </activation>
149 <id>cdh-4.2</id>
150 <dependencies>
151 <dependency>
152 <groupId>org.apache.hadoop</groupId>
153 <artifactId>hadoop-common</artifactId>
154 <version>2.0.0-cdh4.2.0</version>
155 <type>jar</type>
156 <scope>compile</scope>
157 </dependency>
158 <dependency>
159 <groupId>org.apache.hadoop</groupId>
160 <artifactId>hadoop-mapreduce-client-core</artifactId>
161 <version>2.0.0-cdh4.2.0</version>
162 <type>jar</type>
163 <scope>compile</scope>
164 </dependency>
165 <dependency>
166 <groupId>org.apache.hadoop</groupId>
167 <artifactId>hadoop-hdfs</artifactId>
168 <version>2.0.0-cdh4.2.0</version>
169 <type>jar</type>
170 <scope>compile</scope>
171 </dependency>
172 <dependency>
173 <groupId>org.apache.hadoop</groupId>
174 <artifactId>hadoop-minicluster</artifactId>
175 <version>2.0.0-cdh4.2.0</version>
176 <type>jar</type>
Michael Blow5ab717c2016-10-05 11:53:37 -0400177 <scope>test</scope>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700178 </dependency>
179 </dependencies>
180 </profile>
181 <profile>
182 <activation>
183 <activeByDefault>false</activeByDefault>
184 <property>
185 <name>hadoop</name>
186 <value>cdh-4.1</value>
187 </property>
188 </activation>
189 <id>cdh-4.1</id>
190 <dependencies>
191 <dependency>
192 <groupId>org.apache.hadoop</groupId>
193 <artifactId>hadoop-common</artifactId>
194 <version>2.0.0-cdh4.1.0</version>
195 <type>jar</type>
196 <scope>compile</scope>
197 </dependency>
198 <dependency>
199 <groupId>org.apache.hadoop</groupId>
200 <artifactId>hadoop-mapreduce-client-core</artifactId>
201 <version>2.0.0-cdh4.1.0</version>
202 <type>jar</type>
203 <scope>compile</scope>
204 </dependency>
205 <dependency>
206 <groupId>org.apache.hadoop</groupId>
207 <artifactId>hadoop-hdfs</artifactId>
208 <version>2.0.0-cdh4.1.0</version>
209 <type>jar</type>
210 <scope>compile</scope>
211 </dependency>
212 <dependency>
213 <groupId>org.apache.hadoop</groupId>
214 <artifactId>hadoop-minicluster</artifactId>
215 <version>2.0.0-cdh4.1.0</version>
216 <type>jar</type>
Michael Blow5ab717c2016-10-05 11:53:37 -0400217 <scope>test</scope>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700218 </dependency>
219 </dependencies>
220 </profile>
221 </profiles>
buyingyi55df5212013-03-24 07:20:08 +0000222
Michael Blowb4c1fb02016-05-09 15:41:00 -0700223 <dependencies>
224 <dependency>
225 <groupId>org.apache.hyracks</groupId>
226 <artifactId>hyracks-api</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400227 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700228 <type>jar</type>
229 <scope>compile</scope>
230 </dependency>
231 </dependencies>
buyingyi55df5212013-03-24 07:20:08 +0000232
Michael Blowb4c1fb02016-05-09 15:41:00 -0700233 <repositories>
234 <repository>
235 <id>cloudera</id>
236 <url>https://repository.cloudera.com/artifactory/cloudera-repos/</url>
237 </repository>
238 </repositories>
buyingyi55df5212013-03-24 07:20:08 +0000239</project>