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. ! --> |
| 11 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 12 | 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] | 13 | <modelVersion>4.0.0</modelVersion> |
| 14 | <artifactId>hyracks-hdfs-core</artifactId> |
| 15 | <name>hyracks-hdfs-core</name> |
| 16 | <parent> |
| 17 | <artifactId>hyracks-hdfs</artifactId> |
| 18 | <groupId>edu.uci.ics.hyracks</groupId> |
buyingyi | 0f63d8b | 2013-07-22 11:33:10 -0700 | [diff] [blame] | 19 | <version>0.2.10-SNAPSHOT</version> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 20 | </parent> |
| 21 | |
| 22 | <build> |
| 23 | <plugins> |
| 24 | <plugin> |
| 25 | <groupId>org.apache.maven.plugins</groupId> |
| 26 | <artifactId>maven-compiler-plugin</artifactId> |
| 27 | <version>2.0.2</version> |
| 28 | <configuration> |
| 29 | <source>1.7</source> |
| 30 | <target>1.7</target> |
| 31 | <fork>true</fork> |
| 32 | </configuration> |
| 33 | </plugin> |
| 34 | <plugin> |
| 35 | <groupId>org.apache.maven.plugins</groupId> |
| 36 | <artifactId>maven-surefire-plugin</artifactId> |
| 37 | <version>2.7.2</version> |
| 38 | <configuration> |
| 39 | <forkMode>pertest</forkMode> |
| 40 | <includes> |
| 41 | <include>**/*TestSuite.java</include> |
| 42 | <include>**/*Test.java</include> |
| 43 | </includes> |
| 44 | </configuration> |
| 45 | </plugin> |
| 46 | <plugin> |
| 47 | <artifactId>maven-clean-plugin</artifactId> |
| 48 | <version>2.5</version> |
| 49 | <configuration> |
| 50 | <filesets> |
| 51 | <fileset> |
| 52 | <directory>.</directory> |
| 53 | <includes> |
| 54 | <include>edu*</include> |
| 55 | <include>actual*</include> |
| 56 | <include>build*</include> |
| 57 | <include>expect*</include> |
| 58 | <include>ClusterController*</include> |
| 59 | <include>edu.uci.*</include> |
| 60 | </includes> |
| 61 | </fileset> |
| 62 | </filesets> |
| 63 | </configuration> |
| 64 | </plugin> |
buyingyi | 2a8f433 | 2013-08-09 12:46:49 -0700 | [diff] [blame] | 65 | <plugin> |
| 66 | <groupId>org.apache.maven.plugins</groupId> |
| 67 | <artifactId>maven-jar-plugin</artifactId> |
| 68 | <version>2.2</version> |
| 69 | <executions> |
| 70 | <execution> |
| 71 | <goals> |
| 72 | <goal>test-jar</goal> |
| 73 | </goals> |
| 74 | </execution> |
| 75 | </executions> |
| 76 | </plugin> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 77 | </plugins> |
| 78 | </build> |
| 79 | |
| 80 | <profiles> |
| 81 | <profile> |
| 82 | <activation> |
| 83 | <activeByDefault>true</activeByDefault> |
| 84 | </activation> |
| 85 | <id>hadoop-0.20.2</id> |
| 86 | <dependencies> |
| 87 | <dependency> |
| 88 | <groupId>edu.uci.ics.hyracks</groupId> |
| 89 | <artifactId>hyracks-hdfs-0.20.2</artifactId> |
buyingyi | ef88ddb | 2013-03-25 02:57:39 +0000 | [diff] [blame] | 90 | <version>${project.version}</version> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 91 | <type>jar</type> |
| 92 | <scope>compile</scope> |
| 93 | </dependency> |
| 94 | </dependencies> |
| 95 | </profile> |
| 96 | <profile> |
| 97 | <activation> |
| 98 | <activeByDefault>false</activeByDefault> |
| 99 | <property> |
| 100 | <name>hadoop</name> |
| 101 | <value>1.0.4</value> |
| 102 | </property> |
| 103 | </activation> |
| 104 | <id>hadoop-1.0.4</id> |
| 105 | <dependencies> |
| 106 | <dependency> |
| 107 | <groupId>edu.uci.ics.hyracks</groupId> |
| 108 | <artifactId>hyracks-hdfs-0.20.2</artifactId> |
buyingyi | ef88ddb | 2013-03-25 02:57:39 +0000 | [diff] [blame] | 109 | <version>${project.version}</version> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 110 | <type>jar</type> |
| 111 | <scope>compile</scope> |
| 112 | </dependency> |
| 113 | </dependencies> |
| 114 | </profile> |
| 115 | <profile> |
| 116 | <activation> |
| 117 | <activeByDefault>false</activeByDefault> |
| 118 | <property> |
| 119 | <name>hadoop</name> |
| 120 | <value>0.23.1</value> |
| 121 | </property> |
| 122 | </activation> |
| 123 | <id>hadoop-0.23.1</id> |
| 124 | <dependencies> |
| 125 | <dependency> |
| 126 | <groupId>edu.uci.ics.hyracks</groupId> |
| 127 | <artifactId>hyracks-hdfs-0.23.1</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.6</value> |
| 140 | </property> |
| 141 | </activation> |
| 142 | <id>hadoop-0.23.6</id> |
| 143 | <dependencies> |
| 144 | <dependency> |
| 145 | <groupId>edu.uci.ics.hyracks</groupId> |
| 146 | <artifactId>hyracks-hdfs-0.23.1</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>cdh-4.1</value> |
| 159 | </property> |
| 160 | </activation> |
| 161 | <id>cdh-4.1</id> |
| 162 | <dependencies> |
| 163 | <dependency> |
| 164 | <groupId>edu.uci.ics.hyracks</groupId> |
| 165 | <artifactId>hyracks-hdfs-0.23.1</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.2</value> |
| 178 | </property> |
| 179 | </activation> |
| 180 | <id>cdh-4.2</id> |
| 181 | <dependencies> |
| 182 | <dependency> |
| 183 | <groupId>edu.uci.ics.hyracks</groupId> |
| 184 | <artifactId>hyracks-hdfs-0.23.1</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 | </profiles> |
| 192 | |
| 193 | <dependencies> |
| 194 | <dependency> |
| 195 | <groupId>junit</groupId> |
| 196 | <artifactId>junit</artifactId> |
| 197 | <version>3.8.1</version> |
| 198 | <scope>test</scope> |
| 199 | </dependency> |
| 200 | <dependency> |
| 201 | <groupId>edu.uci.ics.hyracks</groupId> |
| 202 | <artifactId>hyracks-api</artifactId> |
buyingyi | 0f63d8b | 2013-07-22 11:33:10 -0700 | [diff] [blame] | 203 | <version>0.2.10-SNAPSHOT</version> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 204 | <scope>compile</scope> |
| 205 | </dependency> |
| 206 | <dependency> |
| 207 | <groupId>edu.uci.ics.hyracks</groupId> |
| 208 | <artifactId>hyracks-dataflow-std</artifactId> |
buyingyi | 0f63d8b | 2013-07-22 11:33:10 -0700 | [diff] [blame] | 209 | <version>0.2.10-SNAPSHOT</version> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 210 | <scope>compile</scope> |
| 211 | </dependency> |
| 212 | <dependency> |
| 213 | <groupId>edu.uci.ics.hyracks</groupId> |
| 214 | <artifactId>hyracks-dataflow-common</artifactId> |
buyingyi | 0f63d8b | 2013-07-22 11:33:10 -0700 | [diff] [blame] | 215 | <version>0.2.10-SNAPSHOT</version> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 216 | <scope>compile</scope> |
| 217 | </dependency> |
| 218 | <dependency> |
| 219 | <groupId>edu.uci.ics.hyracks</groupId> |
| 220 | <artifactId>hyracks-control-cc</artifactId> |
buyingyi | 0f63d8b | 2013-07-22 11:33:10 -0700 | [diff] [blame] | 221 | <version>0.2.10-SNAPSHOT</version> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 222 | <scope>test</scope> |
| 223 | </dependency> |
| 224 | <dependency> |
| 225 | <groupId>edu.uci.ics.hyracks</groupId> |
| 226 | <artifactId>hyracks-control-nc</artifactId> |
buyingyi | 0f63d8b | 2013-07-22 11:33:10 -0700 | [diff] [blame] | 227 | <version>0.2.10-SNAPSHOT</version> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 228 | <scope>test</scope> |
| 229 | </dependency> |
| 230 | <dependency> |
| 231 | <groupId>org.apache.commons</groupId> |
| 232 | <artifactId>commons-io</artifactId> |
| 233 | <version>1.3.2</version> |
| 234 | <scope>test</scope> |
| 235 | </dependency> |
| 236 | </dependencies> |
| 237 | </project> |