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