buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 1 | <?xml version="1.0"?> |
vinayakb | 1ca34f4 | 2013-03-25 03:17:01 +0000 | [diff] [blame] | 2 | <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] | 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | <artifactId>hyracks-hdfs-core</artifactId> |
| 5 | <name>hyracks-hdfs-core</name> |
| 6 | <parent> |
| 7 | <artifactId>hyracks-hdfs</artifactId> |
| 8 | <groupId>edu.uci.ics.hyracks</groupId> |
Vinayak Borkar | ccfbf41 | 2013-04-25 11:40:50 -0700 | [diff] [blame] | 9 | <version>0.2.6-SNAPSHOT</version> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 10 | </parent> |
| 11 | |
| 12 | <build> |
| 13 | <plugins> |
| 14 | <plugin> |
| 15 | <groupId>org.apache.maven.plugins</groupId> |
| 16 | <artifactId>maven-compiler-plugin</artifactId> |
| 17 | <version>2.0.2</version> |
| 18 | <configuration> |
| 19 | <source>1.7</source> |
| 20 | <target>1.7</target> |
| 21 | <fork>true</fork> |
| 22 | </configuration> |
| 23 | </plugin> |
| 24 | <plugin> |
| 25 | <groupId>org.apache.maven.plugins</groupId> |
| 26 | <artifactId>maven-surefire-plugin</artifactId> |
| 27 | <version>2.7.2</version> |
| 28 | <configuration> |
| 29 | <forkMode>pertest</forkMode> |
| 30 | <includes> |
| 31 | <include>**/*TestSuite.java</include> |
| 32 | <include>**/*Test.java</include> |
| 33 | </includes> |
| 34 | </configuration> |
| 35 | </plugin> |
| 36 | <plugin> |
| 37 | <artifactId>maven-clean-plugin</artifactId> |
| 38 | <version>2.5</version> |
| 39 | <configuration> |
| 40 | <filesets> |
| 41 | <fileset> |
| 42 | <directory>.</directory> |
| 43 | <includes> |
| 44 | <include>edu*</include> |
| 45 | <include>actual*</include> |
| 46 | <include>build*</include> |
| 47 | <include>expect*</include> |
| 48 | <include>ClusterController*</include> |
| 49 | <include>edu.uci.*</include> |
| 50 | </includes> |
| 51 | </fileset> |
| 52 | </filesets> |
| 53 | </configuration> |
| 54 | </plugin> |
| 55 | </plugins> |
| 56 | </build> |
| 57 | |
| 58 | <profiles> |
| 59 | <profile> |
| 60 | <activation> |
| 61 | <activeByDefault>true</activeByDefault> |
| 62 | </activation> |
| 63 | <id>hadoop-0.20.2</id> |
| 64 | <dependencies> |
| 65 | <dependency> |
| 66 | <groupId>edu.uci.ics.hyracks</groupId> |
| 67 | <artifactId>hyracks-hdfs-0.20.2</artifactId> |
buyingyi | ef88ddb | 2013-03-25 02:57:39 +0000 | [diff] [blame] | 68 | <version>${project.version}</version> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 69 | <type>jar</type> |
| 70 | <scope>compile</scope> |
| 71 | </dependency> |
| 72 | </dependencies> |
| 73 | </profile> |
| 74 | <profile> |
| 75 | <activation> |
| 76 | <activeByDefault>false</activeByDefault> |
| 77 | <property> |
| 78 | <name>hadoop</name> |
| 79 | <value>1.0.4</value> |
| 80 | </property> |
| 81 | </activation> |
| 82 | <id>hadoop-1.0.4</id> |
| 83 | <dependencies> |
| 84 | <dependency> |
| 85 | <groupId>edu.uci.ics.hyracks</groupId> |
| 86 | <artifactId>hyracks-hdfs-0.20.2</artifactId> |
buyingyi | ef88ddb | 2013-03-25 02:57:39 +0000 | [diff] [blame] | 87 | <version>${project.version}</version> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 88 | <type>jar</type> |
| 89 | <scope>compile</scope> |
| 90 | </dependency> |
| 91 | </dependencies> |
| 92 | </profile> |
| 93 | <profile> |
| 94 | <activation> |
| 95 | <activeByDefault>false</activeByDefault> |
| 96 | <property> |
| 97 | <name>hadoop</name> |
| 98 | <value>0.23.1</value> |
| 99 | </property> |
| 100 | </activation> |
| 101 | <id>hadoop-0.23.1</id> |
| 102 | <dependencies> |
| 103 | <dependency> |
| 104 | <groupId>edu.uci.ics.hyracks</groupId> |
| 105 | <artifactId>hyracks-hdfs-0.23.1</artifactId> |
buyingyi | ef88ddb | 2013-03-25 02:57:39 +0000 | [diff] [blame] | 106 | <version>${project.version}</version> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 107 | <type>jar</type> |
| 108 | <scope>compile</scope> |
| 109 | </dependency> |
| 110 | </dependencies> |
| 111 | </profile> |
| 112 | <profile> |
| 113 | <activation> |
| 114 | <activeByDefault>false</activeByDefault> |
| 115 | <property> |
| 116 | <name>hadoop</name> |
| 117 | <value>0.23.6</value> |
| 118 | </property> |
| 119 | </activation> |
| 120 | <id>hadoop-0.23.6</id> |
| 121 | <dependencies> |
| 122 | <dependency> |
| 123 | <groupId>edu.uci.ics.hyracks</groupId> |
| 124 | <artifactId>hyracks-hdfs-0.23.1</artifactId> |
buyingyi | ef88ddb | 2013-03-25 02:57:39 +0000 | [diff] [blame] | 125 | <version>${project.version}</version> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 126 | <type>jar</type> |
| 127 | <scope>compile</scope> |
| 128 | </dependency> |
| 129 | </dependencies> |
| 130 | </profile> |
| 131 | <profile> |
| 132 | <activation> |
| 133 | <activeByDefault>false</activeByDefault> |
| 134 | <property> |
| 135 | <name>hadoop</name> |
| 136 | <value>cdh-4.1</value> |
| 137 | </property> |
| 138 | </activation> |
| 139 | <id>cdh-4.1</id> |
| 140 | <dependencies> |
| 141 | <dependency> |
| 142 | <groupId>edu.uci.ics.hyracks</groupId> |
| 143 | <artifactId>hyracks-hdfs-0.23.1</artifactId> |
buyingyi | ef88ddb | 2013-03-25 02:57:39 +0000 | [diff] [blame] | 144 | <version>${project.version}</version> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 145 | <type>jar</type> |
| 146 | <scope>compile</scope> |
| 147 | </dependency> |
| 148 | </dependencies> |
| 149 | </profile> |
| 150 | <profile> |
| 151 | <activation> |
| 152 | <activeByDefault>false</activeByDefault> |
| 153 | <property> |
| 154 | <name>hadoop</name> |
| 155 | <value>cdh-4.2</value> |
| 156 | </property> |
| 157 | </activation> |
| 158 | <id>cdh-4.2</id> |
| 159 | <dependencies> |
| 160 | <dependency> |
| 161 | <groupId>edu.uci.ics.hyracks</groupId> |
| 162 | <artifactId>hyracks-hdfs-0.23.1</artifactId> |
buyingyi | ef88ddb | 2013-03-25 02:57:39 +0000 | [diff] [blame] | 163 | <version>${project.version}</version> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 164 | <type>jar</type> |
| 165 | <scope>compile</scope> |
| 166 | </dependency> |
| 167 | </dependencies> |
| 168 | </profile> |
| 169 | </profiles> |
| 170 | |
| 171 | <dependencies> |
| 172 | <dependency> |
| 173 | <groupId>junit</groupId> |
| 174 | <artifactId>junit</artifactId> |
| 175 | <version>3.8.1</version> |
| 176 | <scope>test</scope> |
| 177 | </dependency> |
| 178 | <dependency> |
| 179 | <groupId>edu.uci.ics.hyracks</groupId> |
| 180 | <artifactId>hyracks-api</artifactId> |
Vinayak Borkar | ccfbf41 | 2013-04-25 11:40:50 -0700 | [diff] [blame] | 181 | <version>0.2.6-SNAPSHOT</version> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 182 | <scope>compile</scope> |
| 183 | </dependency> |
| 184 | <dependency> |
| 185 | <groupId>edu.uci.ics.hyracks</groupId> |
| 186 | <artifactId>hyracks-dataflow-std</artifactId> |
Vinayak Borkar | ccfbf41 | 2013-04-25 11:40:50 -0700 | [diff] [blame] | 187 | <version>0.2.6-SNAPSHOT</version> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 188 | <scope>compile</scope> |
| 189 | </dependency> |
| 190 | <dependency> |
| 191 | <groupId>edu.uci.ics.hyracks</groupId> |
| 192 | <artifactId>hyracks-dataflow-common</artifactId> |
Vinayak Borkar | ccfbf41 | 2013-04-25 11:40:50 -0700 | [diff] [blame] | 193 | <version>0.2.6-SNAPSHOT</version> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 194 | <scope>compile</scope> |
| 195 | </dependency> |
| 196 | <dependency> |
| 197 | <groupId>edu.uci.ics.hyracks</groupId> |
| 198 | <artifactId>hyracks-control-cc</artifactId> |
Vinayak Borkar | ccfbf41 | 2013-04-25 11:40:50 -0700 | [diff] [blame] | 199 | <version>0.2.6-SNAPSHOT</version> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 200 | <scope>test</scope> |
| 201 | </dependency> |
| 202 | <dependency> |
| 203 | <groupId>edu.uci.ics.hyracks</groupId> |
| 204 | <artifactId>hyracks-control-nc</artifactId> |
Vinayak Borkar | ccfbf41 | 2013-04-25 11:40:50 -0700 | [diff] [blame] | 205 | <version>0.2.6-SNAPSHOT</version> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 206 | <scope>test</scope> |
| 207 | </dependency> |
| 208 | <dependency> |
| 209 | <groupId>org.apache.commons</groupId> |
| 210 | <artifactId>commons-io</artifactId> |
| 211 | <version>1.3.2</version> |
| 212 | <scope>test</scope> |
| 213 | </dependency> |
| 214 | </dependencies> |
| 215 | </project> |