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"> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [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> |
Ian Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame] | 27 | <groupId>org.apache.hyracks</groupId> |
Ian Maxon | 776894a | 2016-02-02 10:38:56 -0800 | [diff] [blame^] | 28 | <version>0.2.17-SNAPSHOT</version> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 29 | </parent> |
Ian Maxon | 9e37c96 | 2015-11-25 07:38:37 -0800 | [diff] [blame] | 30 | <properties> |
| 31 | <root.dir>${basedir}/../../..</root.dir> |
| 32 | </properties> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 33 | <build> |
| 34 | <plugins> |
| 35 | <plugin> |
| 36 | <groupId>org.apache.maven.plugins</groupId> |
| 37 | <artifactId>maven-compiler-plugin</artifactId> |
| 38 | <version>2.0.2</version> |
| 39 | <configuration> |
| 40 | <source>1.7</source> |
| 41 | <target>1.7</target> |
| 42 | <fork>true</fork> |
| 43 | </configuration> |
| 44 | </plugin> |
| 45 | <plugin> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 46 | <artifactId>maven-clean-plugin</artifactId> |
| 47 | <version>2.5</version> |
| 48 | <configuration> |
| 49 | <filesets> |
| 50 | <fileset> |
| 51 | <directory>.</directory> |
| 52 | <includes> |
| 53 | <include>edu*</include> |
| 54 | <include>actual*</include> |
| 55 | <include>build*</include> |
| 56 | <include>expect*</include> |
| 57 | <include>ClusterController*</include> |
| 58 | <include>edu.uci.*</include> |
| 59 | </includes> |
| 60 | </fileset> |
| 61 | </filesets> |
| 62 | </configuration> |
| 63 | </plugin> |
buyingyi | 2a8f433 | 2013-08-09 12:46:49 -0700 | [diff] [blame] | 64 | <plugin> |
| 65 | <groupId>org.apache.maven.plugins</groupId> |
| 66 | <artifactId>maven-jar-plugin</artifactId> |
| 67 | <version>2.2</version> |
| 68 | <executions> |
| 69 | <execution> |
| 70 | <goals> |
| 71 | <goal>test-jar</goal> |
| 72 | </goals> |
| 73 | </execution> |
| 74 | </executions> |
| 75 | </plugin> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 76 | </plugins> |
| 77 | </build> |
| 78 | |
| 79 | <profiles> |
| 80 | <profile> |
| 81 | <activation> |
Ian | eee859a | 2014-09-21 18:26:49 -0700 | [diff] [blame] | 82 | <activeByDefault>false</activeByDefault> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 83 | </activation> |
| 84 | <id>hadoop-0.20.2</id> |
| 85 | <dependencies> |
| 86 | <dependency> |
Ian Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame] | 87 | <groupId>org.apache.hyracks</groupId> |
Ian | eee859a | 2014-09-21 18:26:49 -0700 | [diff] [blame] | 88 | <artifactId>hyracks-hdfs-1.x</artifactId> |
buyingyi | ef88ddb | 2013-03-25 02:57:39 +0000 | [diff] [blame] | 89 | <version>${project.version}</version> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 90 | <type>jar</type> |
| 91 | <scope>compile</scope> |
| 92 | </dependency> |
| 93 | </dependencies> |
| 94 | </profile> |
| 95 | <profile> |
| 96 | <activation> |
| 97 | <activeByDefault>false</activeByDefault> |
| 98 | <property> |
| 99 | <name>hadoop</name> |
| 100 | <value>1.0.4</value> |
| 101 | </property> |
| 102 | </activation> |
| 103 | <id>hadoop-1.0.4</id> |
| 104 | <dependencies> |
| 105 | <dependency> |
Ian Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame] | 106 | <groupId>org.apache.hyracks</groupId> |
Ian | eee859a | 2014-09-21 18:26:49 -0700 | [diff] [blame] | 107 | <artifactId>hyracks-hdfs-1.x</artifactId> |
| 108 | <version>${project.version}</version> |
| 109 | <type>jar</type> |
| 110 | <scope>compile</scope> |
| 111 | </dependency> |
| 112 | </dependencies> |
| 113 | </profile> |
| 114 | |
| 115 | <profile> |
| 116 | <activation> |
| 117 | <activeByDefault>true</activeByDefault> |
| 118 | <property> |
| 119 | <name>hadoop</name> |
| 120 | <value>2.2.0</value> |
| 121 | </property> |
| 122 | </activation> |
| 123 | <id>hadoop-2.2.0</id> |
| 124 | <dependencies> |
| 125 | <dependency> |
Ian Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame] | 126 | <groupId>org.apache.hyracks</groupId> |
Ian | eee859a | 2014-09-21 18:26:49 -0700 | [diff] [blame] | 127 | <artifactId>hyracks-hdfs-2.x</artifactId> |
buyingyi | ef88ddb | 2013-03-25 02:57:39 +0000 | [diff] [blame] | 128 | <version>${project.version}</version> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 129 | <type>jar</type> |
| 130 | <scope>compile</scope> |
| 131 | </dependency> |
| 132 | </dependencies> |
| 133 | </profile> |
| 134 | <profile> |
| 135 | <activation> |
| 136 | <activeByDefault>false</activeByDefault> |
| 137 | <property> |
| 138 | <name>hadoop</name> |
| 139 | <value>0.23.1</value> |
| 140 | </property> |
| 141 | </activation> |
| 142 | <id>hadoop-0.23.1</id> |
| 143 | <dependencies> |
| 144 | <dependency> |
Ian Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame] | 145 | <groupId>org.apache.hyracks</groupId> |
Ian | eee859a | 2014-09-21 18:26:49 -0700 | [diff] [blame] | 146 | <artifactId>hyracks-hdfs-2.x</artifactId> |
buyingyi | ef88ddb | 2013-03-25 02:57:39 +0000 | [diff] [blame] | 147 | <version>${project.version}</version> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 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>0.23.6</value> |
| 159 | </property> |
| 160 | </activation> |
| 161 | <id>hadoop-0.23.6</id> |
| 162 | <dependencies> |
| 163 | <dependency> |
Ian Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame] | 164 | <groupId>org.apache.hyracks</groupId> |
Ian | eee859a | 2014-09-21 18:26:49 -0700 | [diff] [blame] | 165 | <artifactId>hyracks-hdfs-2.x</artifactId> |
buyingyi | ef88ddb | 2013-03-25 02:57:39 +0000 | [diff] [blame] | 166 | <version>${project.version}</version> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 167 | <type>jar</type> |
| 168 | <scope>compile</scope> |
| 169 | </dependency> |
| 170 | </dependencies> |
| 171 | </profile> |
| 172 | <profile> |
| 173 | <activation> |
| 174 | <activeByDefault>false</activeByDefault> |
| 175 | <property> |
| 176 | <name>hadoop</name> |
| 177 | <value>cdh-4.1</value> |
| 178 | </property> |
| 179 | </activation> |
| 180 | <id>cdh-4.1</id> |
| 181 | <dependencies> |
| 182 | <dependency> |
Ian Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame] | 183 | <groupId>org.apache.hyracks</groupId> |
Ian | eee859a | 2014-09-21 18:26:49 -0700 | [diff] [blame] | 184 | <artifactId>hyracks-hdfs-2.x</artifactId> |
buyingyi | ef88ddb | 2013-03-25 02:57:39 +0000 | [diff] [blame] | 185 | <version>${project.version}</version> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 186 | <type>jar</type> |
| 187 | <scope>compile</scope> |
| 188 | </dependency> |
| 189 | </dependencies> |
| 190 | </profile> |
| 191 | <profile> |
| 192 | <activation> |
| 193 | <activeByDefault>false</activeByDefault> |
| 194 | <property> |
| 195 | <name>hadoop</name> |
| 196 | <value>cdh-4.2</value> |
| 197 | </property> |
| 198 | </activation> |
| 199 | <id>cdh-4.2</id> |
| 200 | <dependencies> |
| 201 | <dependency> |
Ian Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame] | 202 | <groupId>org.apache.hyracks</groupId> |
Ian | eee859a | 2014-09-21 18:26:49 -0700 | [diff] [blame] | 203 | <artifactId>hyracks-hdfs-2.x</artifactId> |
buyingyi | ef88ddb | 2013-03-25 02:57:39 +0000 | [diff] [blame] | 204 | <version>${project.version}</version> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 205 | <type>jar</type> |
| 206 | <scope>compile</scope> |
| 207 | </dependency> |
| 208 | </dependencies> |
| 209 | </profile> |
| 210 | </profiles> |
| 211 | |
| 212 | <dependencies> |
| 213 | <dependency> |
Ian Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame] | 214 | <groupId>org.apache.hyracks</groupId> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 215 | <artifactId>hyracks-api</artifactId> |
Ian Maxon | 776894a | 2016-02-02 10:38:56 -0800 | [diff] [blame^] | 216 | <version>0.2.17-SNAPSHOT</version> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 217 | <scope>compile</scope> |
| 218 | </dependency> |
| 219 | <dependency> |
Ian Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame] | 220 | <groupId>org.apache.hyracks</groupId> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 221 | <artifactId>hyracks-dataflow-std</artifactId> |
Ian Maxon | 776894a | 2016-02-02 10:38:56 -0800 | [diff] [blame^] | 222 | <version>0.2.17-SNAPSHOT</version> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 223 | <scope>compile</scope> |
| 224 | </dependency> |
| 225 | <dependency> |
Ian Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame] | 226 | <groupId>org.apache.hyracks</groupId> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 227 | <artifactId>hyracks-dataflow-common</artifactId> |
Ian Maxon | 776894a | 2016-02-02 10:38:56 -0800 | [diff] [blame^] | 228 | <version>0.2.17-SNAPSHOT</version> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 229 | <scope>compile</scope> |
| 230 | </dependency> |
| 231 | <dependency> |
Ian Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame] | 232 | <groupId>org.apache.hyracks</groupId> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 233 | <artifactId>hyracks-control-cc</artifactId> |
Ian Maxon | 776894a | 2016-02-02 10:38:56 -0800 | [diff] [blame^] | 234 | <version>0.2.17-SNAPSHOT</version> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 235 | <scope>test</scope> |
| 236 | </dependency> |
| 237 | <dependency> |
Ian Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame] | 238 | <groupId>org.apache.hyracks</groupId> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 239 | <artifactId>hyracks-control-nc</artifactId> |
Ian Maxon | 776894a | 2016-02-02 10:38:56 -0800 | [diff] [blame^] | 240 | <version>0.2.17-SNAPSHOT</version> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 241 | <scope>test</scope> |
| 242 | </dependency> |
| 243 | <dependency> |
| 244 | <groupId>org.apache.commons</groupId> |
| 245 | <artifactId>commons-io</artifactId> |
| 246 | <version>1.3.2</version> |
| 247 | <scope>test</scope> |
| 248 | </dependency> |
| 249 | </dependencies> |
| 250 | </project> |