Till Westmann | 276bbc2 | 2013-06-05 18:56:27 -0700 | [diff] [blame] | 1 | <!-- |
Ian Maxon | d885779 | 2015-09-11 14:19:53 -0700 | [diff] [blame] | 2 | ! 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 Westmann | 276bbc2 | 2013-06-05 18:56:27 -0700 | [diff] [blame] | 18 | !--> |
Ian Maxon | d885779 | 2015-09-11 14:19:53 -0700 | [diff] [blame] | 19 | |
vinayakb | 1ca34f4 | 2013-03-25 03:17:01 +0000 | [diff] [blame] | 20 | <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 Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 21 | <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> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 32 | |
Michael Blow | 5ab717c | 2016-10-05 11:53:37 -0400 | [diff] [blame^] | 33 | <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 Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 50 | <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 Blow | 5ab717c | 2016-10-05 11:53:37 -0400 | [diff] [blame^] | 83 | <scope>test</scope> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 84 | </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 Blow | 5ab717c | 2016-10-05 11:53:37 -0400 | [diff] [blame^] | 119 | <scope>test</scope> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 120 | </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 Blow | 5ab717c | 2016-10-05 11:53:37 -0400 | [diff] [blame^] | 159 | <scope>test</scope> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 160 | </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 Blow | 5ab717c | 2016-10-05 11:53:37 -0400 | [diff] [blame^] | 199 | <scope>test</scope> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 200 | </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 Blow | 5ab717c | 2016-10-05 11:53:37 -0400 | [diff] [blame^] | 239 | <scope>test</scope> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 240 | </dependency> |
| 241 | </dependencies> |
| 242 | </profile> |
| 243 | </profiles> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 244 | |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 245 | <dependencies> |
| 246 | <dependency> |
| 247 | <groupId>org.apache.hyracks</groupId> |
| 248 | <artifactId>hyracks-api</artifactId> |
Michael Blow | f8a882d | 2016-08-02 01:28:34 -0400 | [diff] [blame] | 249 | <version>${project.version}</version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 250 | <type>jar</type> |
| 251 | <scope>compile</scope> |
| 252 | </dependency> |
| 253 | </dependencies> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 254 | |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 255 | <repositories> |
| 256 | <repository> |
| 257 | <id>cloudera</id> |
| 258 | <url>https://repository.cloudera.com/artifactory/cloudera-repos/</url> |
| 259 | </repository> |
| 260 | </repositories> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 261 | </project> |