buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 1 | <?xml version="1.0"?> |
Ian Maxon | d885779 | 2015-09-11 14:19:53 -0700 | [diff] [blame] | 2 | <!-- |
| 3 | ! Licensed to the Apache Software Foundation (ASF) under one |
| 4 | ! or more contributor license agreements. See the NOTICE file |
| 5 | ! distributed with this work for additional information |
| 6 | ! regarding copyright ownership. The ASF licenses this file |
| 7 | ! to you under the Apache License, Version 2.0 (the |
| 8 | ! "License"); you may not use this file except in compliance |
| 9 | ! with the License. You may obtain a copy of the License at |
| 10 | ! |
| 11 | ! http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | ! |
| 13 | ! Unless required by applicable law or agreed to in writing, |
| 14 | ! software distributed under the License is distributed on an |
| 15 | ! "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 16 | ! KIND, either express or implied. See the License for the |
| 17 | ! specific language governing permissions and limitations |
| 18 | ! under the License. |
| 19 | !--> |
| 20 | |
Vinayak Borkar | 9c83200 | 2013-12-11 12:08:57 -0800 | [diff] [blame] | 21 | <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^] | 22 | <modelVersion>4.0.0</modelVersion> |
| 23 | <artifactId>hyracks-hdfs-core</artifactId> |
| 24 | <name>hyracks-hdfs-core</name> |
| 25 | <parent> |
| 26 | <artifactId>hyracks-hdfs</artifactId> |
| 27 | <groupId>org.apache.hyracks</groupId> |
| 28 | <version>0.2.18-SNAPSHOT</version> |
| 29 | </parent> |
| 30 | <properties> |
| 31 | <root.dir>${basedir}/../../..</root.dir> |
| 32 | </properties> |
| 33 | <build> |
| 34 | <plugins> |
| 35 | <plugin> |
| 36 | <artifactId>maven-clean-plugin</artifactId> |
| 37 | <version>2.5</version> |
| 38 | <configuration> |
| 39 | <filesets> |
| 40 | <fileset> |
| 41 | <directory>.</directory> |
| 42 | <includes> |
| 43 | <include>edu*</include> |
| 44 | <include>actual*</include> |
| 45 | <include>build*</include> |
| 46 | <include>expect*</include> |
| 47 | <include>ClusterController*</include> |
| 48 | <include>edu.uci.*</include> |
| 49 | </includes> |
| 50 | </fileset> |
| 51 | </filesets> |
| 52 | </configuration> |
| 53 | </plugin> |
| 54 | <plugin> |
| 55 | <groupId>org.apache.maven.plugins</groupId> |
| 56 | <artifactId>maven-jar-plugin</artifactId> |
| 57 | <version>2.2</version> |
| 58 | <executions> |
| 59 | <execution> |
| 60 | <goals> |
| 61 | <goal>test-jar</goal> |
| 62 | </goals> |
| 63 | </execution> |
| 64 | </executions> |
| 65 | </plugin> |
| 66 | </plugins> |
| 67 | </build> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 68 | |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame^] | 69 | <profiles> |
| 70 | <profile> |
| 71 | <activation> |
| 72 | <activeByDefault>false</activeByDefault> |
| 73 | </activation> |
| 74 | <id>hadoop-0.20.2</id> |
| 75 | <dependencies> |
| 76 | <dependency> |
| 77 | <groupId>org.apache.hyracks</groupId> |
| 78 | <artifactId>hyracks-hdfs-1.x</artifactId> |
| 79 | <version>${project.version}</version> |
| 80 | <type>jar</type> |
| 81 | <scope>compile</scope> |
| 82 | </dependency> |
| 83 | </dependencies> |
| 84 | </profile> |
| 85 | <profile> |
| 86 | <activation> |
| 87 | <activeByDefault>false</activeByDefault> |
| 88 | <property> |
| 89 | <name>hadoop</name> |
| 90 | <value>1.0.4</value> |
| 91 | </property> |
| 92 | </activation> |
| 93 | <id>hadoop-1.0.4</id> |
| 94 | <dependencies> |
| 95 | <dependency> |
| 96 | <groupId>org.apache.hyracks</groupId> |
| 97 | <artifactId>hyracks-hdfs-1.x</artifactId> |
| 98 | <version>${project.version}</version> |
| 99 | <type>jar</type> |
| 100 | <scope>compile</scope> |
| 101 | </dependency> |
| 102 | </dependencies> |
| 103 | </profile> |
Ian | eee859a | 2014-09-21 18:26:49 -0700 | [diff] [blame] | 104 | |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame^] | 105 | <profile> |
| 106 | <activation> |
| 107 | <activeByDefault>true</activeByDefault> |
| 108 | <property> |
| 109 | <name>hadoop</name> |
| 110 | <value>2.2.0</value> |
| 111 | </property> |
| 112 | </activation> |
| 113 | <id>hadoop-2.2.0</id> |
| 114 | <dependencies> |
| 115 | <dependency> |
| 116 | <groupId>org.apache.hyracks</groupId> |
| 117 | <artifactId>hyracks-hdfs-2.x</artifactId> |
| 118 | <version>${project.version}</version> |
| 119 | <type>jar</type> |
| 120 | <scope>compile</scope> |
| 121 | </dependency> |
| 122 | </dependencies> |
| 123 | </profile> |
| 124 | <profile> |
| 125 | <activation> |
| 126 | <activeByDefault>false</activeByDefault> |
| 127 | <property> |
| 128 | <name>hadoop</name> |
| 129 | <value>0.23.1</value> |
| 130 | </property> |
| 131 | </activation> |
| 132 | <id>hadoop-0.23.1</id> |
| 133 | <dependencies> |
| 134 | <dependency> |
| 135 | <groupId>org.apache.hyracks</groupId> |
| 136 | <artifactId>hyracks-hdfs-2.x</artifactId> |
| 137 | <version>${project.version}</version> |
| 138 | <type>jar</type> |
| 139 | <scope>compile</scope> |
| 140 | </dependency> |
| 141 | </dependencies> |
| 142 | </profile> |
| 143 | <profile> |
| 144 | <activation> |
| 145 | <activeByDefault>false</activeByDefault> |
| 146 | <property> |
| 147 | <name>hadoop</name> |
| 148 | <value>0.23.6</value> |
| 149 | </property> |
| 150 | </activation> |
| 151 | <id>hadoop-0.23.6</id> |
| 152 | <dependencies> |
| 153 | <dependency> |
| 154 | <groupId>org.apache.hyracks</groupId> |
| 155 | <artifactId>hyracks-hdfs-2.x</artifactId> |
| 156 | <version>${project.version}</version> |
| 157 | <type>jar</type> |
| 158 | <scope>compile</scope> |
| 159 | </dependency> |
| 160 | </dependencies> |
| 161 | </profile> |
| 162 | <profile> |
| 163 | <activation> |
| 164 | <activeByDefault>false</activeByDefault> |
| 165 | <property> |
| 166 | <name>hadoop</name> |
| 167 | <value>cdh-4.1</value> |
| 168 | </property> |
| 169 | </activation> |
| 170 | <id>cdh-4.1</id> |
| 171 | <dependencies> |
| 172 | <dependency> |
| 173 | <groupId>org.apache.hyracks</groupId> |
| 174 | <artifactId>hyracks-hdfs-2.x</artifactId> |
| 175 | <version>${project.version}</version> |
| 176 | <type>jar</type> |
| 177 | <scope>compile</scope> |
| 178 | </dependency> |
| 179 | </dependencies> |
| 180 | </profile> |
| 181 | <profile> |
| 182 | <activation> |
| 183 | <activeByDefault>false</activeByDefault> |
| 184 | <property> |
| 185 | <name>hadoop</name> |
| 186 | <value>cdh-4.2</value> |
| 187 | </property> |
| 188 | </activation> |
| 189 | <id>cdh-4.2</id> |
| 190 | <dependencies> |
| 191 | <dependency> |
| 192 | <groupId>org.apache.hyracks</groupId> |
| 193 | <artifactId>hyracks-hdfs-2.x</artifactId> |
| 194 | <version>${project.version}</version> |
| 195 | <type>jar</type> |
| 196 | <scope>compile</scope> |
| 197 | </dependency> |
| 198 | </dependencies> |
| 199 | </profile> |
| 200 | </profiles> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 201 | |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame^] | 202 | <dependencies> |
| 203 | <dependency> |
| 204 | <groupId>org.apache.hyracks</groupId> |
| 205 | <artifactId>hyracks-api</artifactId> |
| 206 | <version>0.2.18-SNAPSHOT</version> |
| 207 | <scope>compile</scope> |
| 208 | </dependency> |
| 209 | <dependency> |
| 210 | <groupId>org.apache.hyracks</groupId> |
| 211 | <artifactId>hyracks-dataflow-std</artifactId> |
| 212 | <version>0.2.18-SNAPSHOT</version> |
| 213 | <scope>compile</scope> |
| 214 | </dependency> |
| 215 | <dependency> |
| 216 | <groupId>org.apache.hyracks</groupId> |
| 217 | <artifactId>hyracks-dataflow-common</artifactId> |
| 218 | <version>0.2.18-SNAPSHOT</version> |
| 219 | <scope>compile</scope> |
| 220 | </dependency> |
| 221 | <dependency> |
| 222 | <groupId>org.apache.hyracks</groupId> |
| 223 | <artifactId>hyracks-control-cc</artifactId> |
| 224 | <version>0.2.18-SNAPSHOT</version> |
| 225 | <scope>test</scope> |
| 226 | </dependency> |
| 227 | <dependency> |
| 228 | <groupId>org.apache.hyracks</groupId> |
| 229 | <artifactId>hyracks-control-nc</artifactId> |
| 230 | <version>0.2.18-SNAPSHOT</version> |
| 231 | <scope>test</scope> |
| 232 | </dependency> |
| 233 | <dependency> |
| 234 | <groupId>org.apache.commons</groupId> |
| 235 | <artifactId>commons-io</artifactId> |
| 236 | <version>1.3.2</version> |
| 237 | <scope>test</scope> |
| 238 | </dependency> |
| 239 | </dependencies> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 240 | </project> |