blob: 2160294a0015348df7485d3f49b485e5429c05a4 [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>
AsterixDB Jenkins0948b242017-11-20 15:56:08 -080027 <version>0.3.4-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>
Michael Blow5ab717c2016-10-05 11:53:37 -040038 <executions>
39 <execution>
40 <goals>
41 <goal>test-jar</goal>
42 </goals>
43 </execution>
44 </executions>
45 </plugin>
46 </plugins>
47 </build>
48
Michael Blowb4c1fb02016-05-09 15:41:00 -070049 <profiles>
50 <profile>
51 <activation>
52 <activeByDefault>true</activeByDefault>
53 <property>
54 <name>hadoop</name>
55 <value>2.2.0</value>
56 </property>
57 </activation>
58 <id>hadoop-2.2.0</id>
59 <dependencies>
60 <dependency>
61 <groupId>org.apache.hadoop</groupId>
62 <artifactId>hadoop-common</artifactId>
63 <type>jar</type>
64 <scope>compile</scope>
65 </dependency>
66 <dependency>
67 <groupId>org.apache.hadoop</groupId>
68 <artifactId>hadoop-mapreduce-client-core</artifactId>
69 <type>jar</type>
70 <scope>compile</scope>
71 </dependency>
72 <dependency>
73 <groupId>org.apache.hadoop</groupId>
74 <artifactId>hadoop-hdfs</artifactId>
Michael Blowba358122016-10-13 19:56:03 -040075 <classifier>tests</classifier>
Michael Blow5ab717c2016-10-05 11:53:37 -040076 <scope>test</scope>
Michael Blowb4c1fb02016-05-09 15:41:00 -070077 </dependency>
78 </dependencies>
79 </profile>
80 <profile>
81 <activation>
82 <activeByDefault>true</activeByDefault>
83 <property>
84 <name>hadoop</name>
85 <value>0.23.1</value>
86 </property>
87 </activation>
88 <id>hadoop-0.23.1</id>
89 <dependencies>
90 <dependency>
91 <groupId>org.apache.hadoop</groupId>
92 <artifactId>hadoop-common</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -070093 </dependency>
94 <dependency>
95 <groupId>org.apache.hadoop</groupId>
96 <artifactId>hadoop-mapreduce-client-core</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -070097 </dependency>
98 </dependencies>
99 </profile>
100 <profile>
101 <id>hadoop-0.23.6</id>
102 <activation>
103 <activeByDefault>false</activeByDefault>
104 <property>
105 <name>hadoop</name>
106 <value>0.23.6</value>
107 </property>
108 </activation>
109 <dependencies>
110 <dependency>
111 <groupId>org.apache.hadoop</groupId>
112 <artifactId>hadoop-common</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-mapreduce-client-core</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-hdfs</artifactId>
127 <version>0.23.6</version>
128 <type>jar</type>
129 <scope>compile</scope>
130 </dependency>
131 <dependency>
132 <groupId>org.apache.hadoop</groupId>
133 <artifactId>hadoop-minicluster</artifactId>
134 <version>0.23.6</version>
135 <type>jar</type>
Michael Blow5ab717c2016-10-05 11:53:37 -0400136 <scope>test</scope>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700137 </dependency>
138 </dependencies>
139 </profile>
140 <profile>
141 <activation>
142 <activeByDefault>false</activeByDefault>
143 <property>
144 <name>hadoop</name>
145 <value>cdh-4.2</value>
146 </property>
147 </activation>
148 <id>cdh-4.2</id>
149 <dependencies>
150 <dependency>
151 <groupId>org.apache.hadoop</groupId>
152 <artifactId>hadoop-common</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-mapreduce-client-core</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-hdfs</artifactId>
167 <version>2.0.0-cdh4.2.0</version>
168 <type>jar</type>
169 <scope>compile</scope>
170 </dependency>
171 <dependency>
172 <groupId>org.apache.hadoop</groupId>
173 <artifactId>hadoop-minicluster</artifactId>
174 <version>2.0.0-cdh4.2.0</version>
175 <type>jar</type>
Michael Blow5ab717c2016-10-05 11:53:37 -0400176 <scope>test</scope>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700177 </dependency>
178 </dependencies>
179 </profile>
180 <profile>
181 <activation>
182 <activeByDefault>false</activeByDefault>
183 <property>
184 <name>hadoop</name>
185 <value>cdh-4.1</value>
186 </property>
187 </activation>
188 <id>cdh-4.1</id>
189 <dependencies>
190 <dependency>
191 <groupId>org.apache.hadoop</groupId>
192 <artifactId>hadoop-common</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-mapreduce-client-core</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-hdfs</artifactId>
207 <version>2.0.0-cdh4.1.0</version>
208 <type>jar</type>
209 <scope>compile</scope>
210 </dependency>
211 <dependency>
212 <groupId>org.apache.hadoop</groupId>
213 <artifactId>hadoop-minicluster</artifactId>
214 <version>2.0.0-cdh4.1.0</version>
215 <type>jar</type>
Michael Blow5ab717c2016-10-05 11:53:37 -0400216 <scope>test</scope>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700217 </dependency>
218 </dependencies>
219 </profile>
220 </profiles>
buyingyi55df5212013-03-24 07:20:08 +0000221
Michael Blowb4c1fb02016-05-09 15:41:00 -0700222 <dependencies>
223 <dependency>
224 <groupId>org.apache.hyracks</groupId>
225 <artifactId>hyracks-api</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400226 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700227 <type>jar</type>
228 <scope>compile</scope>
229 </dependency>
230 </dependencies>
buyingyi55df5212013-03-24 07:20:08 +0000231
buyingyi55df5212013-03-24 07:20:08 +0000232</project>