buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 1 | <?xml version="1.0"?> |
Till Westmann | 276bbc2 | 2013-06-05 18:56:27 -0700 | [diff] [blame] | 2 | <!-- |
| 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 | !--> |
vinayakb | 1ca34f4 | 2013-03-25 03:17:01 +0000 | [diff] [blame] | 16 | <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"> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 17 | <modelVersion>4.0.0</modelVersion> |
Ian | eee859a | 2014-09-21 18:26:49 -0700 | [diff] [blame^] | 18 | <artifactId>hyracks-hdfs-2.x</artifactId> |
| 19 | <name>hyracks-hdfs-2.x</name> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 20 | <parent> |
| 21 | <artifactId>hyracks-hdfs</artifactId> |
| 22 | <groupId>edu.uci.ics.hyracks</groupId> |
Ian Maxon | 6cbcf01 | 2014-09-19 15:58:48 -0700 | [diff] [blame] | 23 | <version>0.2.14-SNAPSHOT</version> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 24 | </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> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 37 | </plugins> |
| 38 | </build> |
| 39 | |
| 40 | <profiles> |
| 41 | <profile> |
| 42 | <activation> |
| 43 | <activeByDefault>true</activeByDefault> |
| 44 | <property> |
| 45 | <name>hadoop</name> |
Ian | eee859a | 2014-09-21 18:26:49 -0700 | [diff] [blame^] | 46 | <value>2.2.0</value> |
| 47 | </property> |
| 48 | </activation> |
| 49 | <id>hadoop-2.2.0</id> |
| 50 | <dependencies> |
| 51 | <dependency> |
| 52 | <groupId>org.apache.hadoop</groupId> |
| 53 | <artifactId>hadoop-common</artifactId> |
| 54 | <type>jar</type> |
| 55 | <scope>compile</scope> |
| 56 | </dependency> |
| 57 | <dependency> |
| 58 | <groupId>org.apache.hadoop</groupId> |
| 59 | <artifactId>hadoop-mapreduce-client-core</artifactId> |
| 60 | <type>jar</type> |
| 61 | <scope>compile</scope> |
| 62 | </dependency> |
| 63 | <dependency> |
| 64 | <groupId>org.apache.hadoop</groupId> |
| 65 | <artifactId>hadoop-hdfs</artifactId> |
| 66 | <type>jar</type> |
| 67 | <scope>compile</scope> |
| 68 | </dependency> |
| 69 | <dependency> |
| 70 | <groupId>org.apache.hadoop</groupId> |
| 71 | <artifactId>hadoop-minicluster</artifactId> |
| 72 | <type>jar</type> |
| 73 | <scope>compile</scope> |
| 74 | </dependency> |
| 75 | </dependencies> |
| 76 | </profile> |
| 77 | <profile> |
| 78 | <activation> |
| 79 | <activeByDefault>true</activeByDefault> |
| 80 | <property> |
| 81 | <name>hadoop</name> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 82 | <value>0.23.1</value> |
| 83 | </property> |
| 84 | </activation> |
| 85 | <id>hadoop-0.23.1</id> |
| 86 | <dependencies> |
| 87 | <dependency> |
| 88 | <groupId>org.apache.hadoop</groupId> |
| 89 | <artifactId>hadoop-common</artifactId> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 90 | <type>jar</type> |
| 91 | <scope>compile</scope> |
| 92 | </dependency> |
| 93 | <dependency> |
| 94 | <groupId>org.apache.hadoop</groupId> |
| 95 | <artifactId>hadoop-mapreduce-client-core</artifactId> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 96 | <type>jar</type> |
| 97 | <scope>compile</scope> |
| 98 | </dependency> |
| 99 | <dependency> |
| 100 | <groupId>org.apache.hadoop</groupId> |
| 101 | <artifactId>hadoop-hdfs</artifactId> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 102 | <type>jar</type> |
| 103 | <scope>compile</scope> |
| 104 | </dependency> |
| 105 | <dependency> |
| 106 | <groupId>org.apache.hadoop</groupId> |
| 107 | <artifactId>hadoop-minicluster</artifactId> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 108 | <type>jar</type> |
| 109 | <scope>compile</scope> |
| 110 | </dependency> |
| 111 | </dependencies> |
| 112 | </profile> |
| 113 | <profile> |
| 114 | <id>hadoop-0.23.6</id> |
| 115 | <activation> |
| 116 | <activeByDefault>false</activeByDefault> |
| 117 | <property> |
| 118 | <name>hadoop</name> |
| 119 | <value>0.23.6</value> |
| 120 | </property> |
| 121 | </activation> |
| 122 | <dependencies> |
| 123 | <dependency> |
| 124 | <groupId>org.apache.hadoop</groupId> |
| 125 | <artifactId>hadoop-common</artifactId> |
| 126 | <version>0.23.6</version> |
| 127 | <type>jar</type> |
| 128 | <scope>compile</scope> |
| 129 | </dependency> |
| 130 | <dependency> |
| 131 | <groupId>org.apache.hadoop</groupId> |
| 132 | <artifactId>hadoop-mapreduce-client-core</artifactId> |
| 133 | <version>0.23.6</version> |
| 134 | <type>jar</type> |
| 135 | <scope>compile</scope> |
| 136 | </dependency> |
| 137 | <dependency> |
| 138 | <groupId>org.apache.hadoop</groupId> |
| 139 | <artifactId>hadoop-hdfs</artifactId> |
| 140 | <version>0.23.6</version> |
| 141 | <type>jar</type> |
| 142 | <scope>compile</scope> |
| 143 | </dependency> |
| 144 | <dependency> |
| 145 | <groupId>org.apache.hadoop</groupId> |
| 146 | <artifactId>hadoop-minicluster</artifactId> |
| 147 | <version>0.23.6</version> |
| 148 | <type>jar</type> |
| 149 | <scope>compile</scope> |
| 150 | </dependency> |
| 151 | </dependencies> |
| 152 | </profile> |
| 153 | <profile> |
| 154 | <activation> |
| 155 | <activeByDefault>false</activeByDefault> |
| 156 | <property> |
| 157 | <name>hadoop</name> |
| 158 | <value>cdh-4.2</value> |
| 159 | </property> |
| 160 | </activation> |
| 161 | <id>cdh-4.2</id> |
| 162 | <dependencies> |
| 163 | <dependency> |
| 164 | <groupId>org.apache.hadoop</groupId> |
| 165 | <artifactId>hadoop-common</artifactId> |
| 166 | <version>2.0.0-cdh4.2.0</version> |
| 167 | <type>jar</type> |
| 168 | <scope>compile</scope> |
| 169 | </dependency> |
| 170 | <dependency> |
| 171 | <groupId>org.apache.hadoop</groupId> |
| 172 | <artifactId>hadoop-mapreduce-client-core</artifactId> |
| 173 | <version>2.0.0-cdh4.2.0</version> |
| 174 | <type>jar</type> |
| 175 | <scope>compile</scope> |
| 176 | </dependency> |
| 177 | <dependency> |
| 178 | <groupId>org.apache.hadoop</groupId> |
| 179 | <artifactId>hadoop-hdfs</artifactId> |
| 180 | <version>2.0.0-cdh4.2.0</version> |
| 181 | <type>jar</type> |
| 182 | <scope>compile</scope> |
| 183 | </dependency> |
| 184 | <dependency> |
| 185 | <groupId>org.apache.hadoop</groupId> |
| 186 | <artifactId>hadoop-minicluster</artifactId> |
| 187 | <version>2.0.0-cdh4.2.0</version> |
| 188 | <type>jar</type> |
| 189 | <scope>compile</scope> |
| 190 | </dependency> |
| 191 | </dependencies> |
| 192 | </profile> |
| 193 | <profile> |
| 194 | <activation> |
| 195 | <activeByDefault>false</activeByDefault> |
| 196 | <property> |
| 197 | <name>hadoop</name> |
| 198 | <value>cdh-4.1</value> |
| 199 | </property> |
| 200 | </activation> |
| 201 | <id>cdh-4.1</id> |
| 202 | <dependencies> |
| 203 | <dependency> |
| 204 | <groupId>org.apache.hadoop</groupId> |
| 205 | <artifactId>hadoop-common</artifactId> |
| 206 | <version>2.0.0-cdh4.1.0</version> |
| 207 | <type>jar</type> |
| 208 | <scope>compile</scope> |
| 209 | </dependency> |
| 210 | <dependency> |
| 211 | <groupId>org.apache.hadoop</groupId> |
| 212 | <artifactId>hadoop-mapreduce-client-core</artifactId> |
| 213 | <version>2.0.0-cdh4.1.0</version> |
| 214 | <type>jar</type> |
| 215 | <scope>compile</scope> |
| 216 | </dependency> |
| 217 | <dependency> |
| 218 | <groupId>org.apache.hadoop</groupId> |
| 219 | <artifactId>hadoop-hdfs</artifactId> |
| 220 | <version>2.0.0-cdh4.1.0</version> |
| 221 | <type>jar</type> |
| 222 | <scope>compile</scope> |
| 223 | </dependency> |
| 224 | <dependency> |
| 225 | <groupId>org.apache.hadoop</groupId> |
| 226 | <artifactId>hadoop-minicluster</artifactId> |
| 227 | <version>2.0.0-cdh4.1.0</version> |
| 228 | <type>jar</type> |
| 229 | <scope>compile</scope> |
| 230 | </dependency> |
| 231 | </dependencies> |
| 232 | </profile> |
| 233 | </profiles> |
| 234 | |
| 235 | <dependencies> |
| 236 | <dependency> |
| 237 | <groupId>edu.uci.ics.hyracks</groupId> |
| 238 | <artifactId>hyracks-api</artifactId> |
Ian Maxon | 6cbcf01 | 2014-09-19 15:58:48 -0700 | [diff] [blame] | 239 | <version>0.2.14-SNAPSHOT</version> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 240 | <type>jar</type> |
| 241 | <scope>compile</scope> |
| 242 | </dependency> |
| 243 | </dependencies> |
| 244 | |
| 245 | <repositories> |
| 246 | <repository> |
| 247 | <id>cloudera</id> |
| 248 | <url>https://repository.cloudera.com/artifactory/cloudera-repos/</url> |
| 249 | </repository> |
| 250 | </repositories> |
| 251 | </project> |