Till Westmann | 276bbc2 | 2013-06-05 18:56:27 -0700 | [diff] [blame] | 1 | <!-- |
| 2 | ! Copyright 2009-2013 by The Regents of the University of California |
| 3 | ! Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | ! you may not use this file except in compliance with the License. |
| 5 | ! you may obtain a copy of the License from |
| 6 | ! |
| 7 | ! http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | ! |
| 9 | ! Unless required by applicable law or agreed to in writing, software |
| 10 | ! distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | ! WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | ! See the License for the specific language governing permissions and |
| 13 | ! limitations under the License. |
| 14 | !--> |
vinayakb | 1ca34f4 | 2013-03-25 03:17:01 +0000 | [diff] [blame] | 15 | <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 | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 16 | <modelVersion>4.0.0</modelVersion> |
| 17 | <artifactId>pregelix-core</artifactId> |
| 18 | <packaging>jar</packaging> |
| 19 | <name>pregelix-core</name> |
| 20 | |
| 21 | <parent> |
buyingyi | 202af41 | 2012-10-08 23:07:09 +0000 | [diff] [blame] | 22 | <groupId>edu.uci.ics.hyracks</groupId> |
| 23 | <artifactId>pregelix</artifactId> |
buyingyi | 8b301e7 | 2013-07-22 11:30:36 -0700 | [diff] [blame^] | 24 | <version>0.2.9</version> |
buyingyi | 202af41 | 2012-10-08 23:07:09 +0000 | [diff] [blame] | 25 | </parent> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 26 | |
| 27 | |
| 28 | <properties> |
| 29 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 30 | </properties> |
| 31 | |
| 32 | <build> |
| 33 | <plugins> |
| 34 | <plugin> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 35 | <groupId>org.apache.maven.plugins</groupId> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 36 | <artifactId>maven-jar-plugin</artifactId> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 37 | <version>2.3.2</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 38 | <executions> |
| 39 | <execution> |
| 40 | <id>balancer</id> |
| 41 | <goals> |
| 42 | <goal>jar</goal> |
| 43 | </goals> |
| 44 | <phase>package</phase> |
| 45 | <configuration> |
| 46 | <classifier>balancer</classifier> |
| 47 | <archive> |
| 48 | <manifest> |
buyingyi | 4dcab6a | 2012-10-09 21:37:52 +0000 | [diff] [blame] | 49 | <MainClass>edu.uci.ics.pregelix.core.util.DataBalancer</MainClass> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 50 | </manifest> |
| 51 | </archive> |
| 52 | <includes> |
buyingyi | 4dcab6a | 2012-10-09 21:37:52 +0000 | [diff] [blame] | 53 | <include>**/edu/uci/ics/pregelix/core/util/DataBalancer*</include> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 54 | </includes> |
| 55 | </configuration> |
| 56 | </execution> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 57 | <execution> |
| 58 | <id>generator</id> |
| 59 | <goals> |
| 60 | <goal>jar</goal> |
| 61 | </goals> |
| 62 | <phase>package</phase> |
| 63 | <configuration> |
| 64 | <classifier>generator</classifier> |
| 65 | <archive> |
| 66 | <manifest> |
buyingyi | 4dcab6a | 2012-10-09 21:37:52 +0000 | [diff] [blame] | 67 | <MainClass>edu.uci.ics.pregelix.core.util.DataGenerator</MainClass> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 68 | </manifest> |
| 69 | </archive> |
| 70 | <includes> |
buyingyi | 4dcab6a | 2012-10-09 21:37:52 +0000 | [diff] [blame] | 71 | <include>**/edu/uci/ics/pregelix/core/util/DataGenerator*</include> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 72 | </includes> |
| 73 | </configuration> |
| 74 | </execution> |
| 75 | </executions> |
| 76 | </plugin> |
| 77 | <plugin> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 78 | <groupId>org.apache.maven.plugins</groupId> |
| 79 | <artifactId>maven-compiler-plugin</artifactId> |
| 80 | <version>2.0.2</version> |
| 81 | <configuration> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 82 | <source>1.7</source> |
| 83 | <target>1.7</target> |
| 84 | <fork>true</fork> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 85 | </configuration> |
| 86 | </plugin> |
| 87 | <plugin> |
| 88 | <groupId>org.codehaus.mojo</groupId> |
| 89 | <artifactId>appassembler-maven-plugin</artifactId> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 90 | <version>1.3</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 91 | <executions> |
| 92 | <execution> |
| 93 | <configuration> |
| 94 | <programs> |
| 95 | <program> |
| 96 | <mainClass>org.apache.hadoop.util.RunJar</mainClass> |
| 97 | <name>pregelix-obselete</name> |
| 98 | </program> |
| 99 | </programs> |
| 100 | <repositoryLayout>flat</repositoryLayout> |
| 101 | <repositoryName>lib</repositoryName> |
| 102 | </configuration> |
| 103 | <phase>package</phase> |
| 104 | <goals> |
| 105 | <goal>assemble</goal> |
| 106 | </goals> |
| 107 | </execution> |
| 108 | </executions> |
| 109 | </plugin> |
| 110 | <plugin> |
| 111 | <artifactId>maven-assembly-plugin</artifactId> |
| 112 | <version>2.2-beta-5</version> |
| 113 | <executions> |
| 114 | <execution> |
| 115 | <configuration> |
| 116 | <descriptors> |
| 117 | <descriptor>src/main/assembly/binary-assembly.xml</descriptor> |
| 118 | </descriptors> |
| 119 | </configuration> |
| 120 | <phase>package</phase> |
| 121 | <goals> |
| 122 | <goal>attached</goal> |
| 123 | </goals> |
| 124 | </execution> |
| 125 | </executions> |
| 126 | </plugin> |
| 127 | <plugin> |
| 128 | <artifactId>maven-resources-plugin</artifactId> |
| 129 | <version>2.5</version> |
| 130 | <executions> |
| 131 | <execution> |
| 132 | <id>copy-scripts</id> |
| 133 | <!-- here the phase you need --> |
| 134 | <phase>package</phase> |
| 135 | <goals> |
| 136 | <goal>copy-resources</goal> |
| 137 | </goals> |
| 138 | <configuration> |
| 139 | <outputDirectory>target/appassembler/bin</outputDirectory> |
| 140 | <resources> |
| 141 | <resource> |
| 142 | <directory>src/main/resources/scripts</directory> |
| 143 | </resource> |
| 144 | </resources> |
| 145 | </configuration> |
| 146 | </execution> |
| 147 | <execution> |
| 148 | <id>copy-conf</id> |
| 149 | <!-- here the phase you need --> |
| 150 | <phase>package</phase> |
| 151 | <goals> |
| 152 | <goal>copy-resources</goal> |
| 153 | </goals> |
| 154 | <configuration> |
| 155 | <outputDirectory>target/appassembler/conf</outputDirectory> |
| 156 | <resources> |
| 157 | <resource> |
| 158 | <directory>src/main/resources/conf</directory> |
| 159 | </resource> |
| 160 | </resources> |
| 161 | </configuration> |
| 162 | </execution> |
| 163 | </executions> |
| 164 | </plugin> |
| 165 | <plugin> |
| 166 | <groupId>org.apache.maven.plugins</groupId> |
| 167 | <artifactId>maven-surefire-plugin</artifactId> |
| 168 | <version>2.7.2</version> |
| 169 | <configuration> |
| 170 | <forkMode>pertest</forkMode> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 171 | <argLine>-enableassertions -Xmx512m -XX:MaxPermSize=300m |
| 172 | -Dfile.encoding=UTF-8 |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 173 | -Djava.util.logging.config.file=src/test/resources/logging.properties</argLine> |
| 174 | <includes> |
| 175 | <include>**/*TestSuite.java</include> |
| 176 | <include>**/*Test.java</include> |
| 177 | </includes> |
| 178 | </configuration> |
| 179 | </plugin> |
| 180 | <plugin> |
| 181 | <artifactId>maven-clean-plugin</artifactId> |
vinayakb | 4df3110 | 2013-04-06 18:28:48 +0000 | [diff] [blame] | 182 | <version>2.4.1</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 183 | <configuration> |
| 184 | <filesets> |
| 185 | <fileset> |
| 186 | <directory>.</directory> |
| 187 | <includes> |
| 188 | <include>teststore*</include> |
| 189 | <include>edu*</include> |
| 190 | <include>actual*</include> |
| 191 | <include>build*</include> |
| 192 | <include>expect*</include> |
| 193 | <include>ClusterController*</include> |
| 194 | </includes> |
| 195 | </fileset> |
| 196 | </filesets> |
| 197 | </configuration> |
| 198 | </plugin> |
| 199 | </plugins> |
| 200 | </build> |
| 201 | |
| 202 | <dependencies> |
| 203 | <dependency> |
| 204 | <groupId>junit</groupId> |
| 205 | <artifactId>junit</artifactId> |
| 206 | <version>4.8.1</version> |
| 207 | <scope>test</scope> |
| 208 | </dependency> |
| 209 | <dependency> |
buyingyi | e775250 | 2012-10-08 00:35:31 +0000 | [diff] [blame] | 210 | <groupId>edu.uci.ics.hyracks</groupId> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 211 | <artifactId>pregelix-api</artifactId> |
buyingyi | 8b301e7 | 2013-07-22 11:30:36 -0700 | [diff] [blame^] | 212 | <version>0.2.9</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 213 | <type>jar</type> |
| 214 | <scope>compile</scope> |
| 215 | </dependency> |
| 216 | <dependency> |
buyingyi | e775250 | 2012-10-08 00:35:31 +0000 | [diff] [blame] | 217 | <groupId>edu.uci.ics.hyracks</groupId> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 218 | <artifactId>pregelix-dataflow-std</artifactId> |
buyingyi | 8b301e7 | 2013-07-22 11:30:36 -0700 | [diff] [blame^] | 219 | <version>0.2.9</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 220 | <type>jar</type> |
| 221 | <scope>compile</scope> |
| 222 | </dependency> |
| 223 | <dependency> |
buyingyi | e775250 | 2012-10-08 00:35:31 +0000 | [diff] [blame] | 224 | <groupId>edu.uci.ics.hyracks</groupId> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 225 | <artifactId>pregelix-dataflow</artifactId> |
buyingyi | 8b301e7 | 2013-07-22 11:30:36 -0700 | [diff] [blame^] | 226 | <version>0.2.9</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 227 | <type>jar</type> |
| 228 | <scope>compile</scope> |
| 229 | </dependency> |
| 230 | <dependency> |
| 231 | <groupId>edu.uci.ics.hyracks</groupId> |
| 232 | <artifactId>hyracks-dataflow-std</artifactId> |
buyingyi | 8b301e7 | 2013-07-22 11:30:36 -0700 | [diff] [blame^] | 233 | <version>0.2.9</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 234 | <type>jar</type> |
| 235 | <scope>compile</scope> |
| 236 | </dependency> |
| 237 | <dependency> |
buyingyi | e775250 | 2012-10-08 00:35:31 +0000 | [diff] [blame] | 238 | <groupId>edu.uci.ics.hyracks</groupId> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 239 | <artifactId>pregelix-runtime</artifactId> |
buyingyi | 8b301e7 | 2013-07-22 11:30:36 -0700 | [diff] [blame^] | 240 | <version>0.2.9</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 241 | <type>jar</type> |
| 242 | <scope>compile</scope> |
| 243 | </dependency> |
| 244 | <dependency> |
| 245 | <groupId>edu.uci.ics.hyracks</groupId> |
| 246 | <artifactId>hyracks-api</artifactId> |
buyingyi | 8b301e7 | 2013-07-22 11:30:36 -0700 | [diff] [blame^] | 247 | <version>0.2.9</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 248 | <type>jar</type> |
| 249 | <scope>compile</scope> |
| 250 | </dependency> |
| 251 | <dependency> |
| 252 | <groupId>edu.uci.ics.hyracks</groupId> |
| 253 | <artifactId>hyracks-dataflow-common</artifactId> |
buyingyi | 8b301e7 | 2013-07-22 11:30:36 -0700 | [diff] [blame^] | 254 | <version>0.2.9</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 255 | <type>jar</type> |
| 256 | <scope>compile</scope> |
| 257 | </dependency> |
| 258 | <dependency> |
| 259 | <groupId>edu.uci.ics.hyracks</groupId> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 260 | <artifactId>hyracks-data-std</artifactId> |
buyingyi | 8b301e7 | 2013-07-22 11:30:36 -0700 | [diff] [blame^] | 261 | <version>0.2.9</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 262 | <type>jar</type> |
| 263 | <scope>compile</scope> |
| 264 | </dependency> |
| 265 | <dependency> |
| 266 | <groupId>edu.uci.ics.hyracks</groupId> |
| 267 | <artifactId>hyracks-storage-am-common</artifactId> |
buyingyi | 8b301e7 | 2013-07-22 11:30:36 -0700 | [diff] [blame^] | 268 | <version>0.2.9</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 269 | <type>jar</type> |
| 270 | <scope>compile</scope> |
| 271 | </dependency> |
| 272 | <dependency> |
| 273 | <groupId>edu.uci.ics.hyracks</groupId> |
| 274 | <artifactId>hyracks-storage-am-btree</artifactId> |
buyingyi | 8b301e7 | 2013-07-22 11:30:36 -0700 | [diff] [blame^] | 275 | <version>0.2.9</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 276 | <type>jar</type> |
| 277 | <scope>compile</scope> |
| 278 | </dependency> |
| 279 | <dependency> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 280 | <groupId>edu.uci.ics.hyracks</groupId> |
| 281 | <artifactId>hyracks-control-cc</artifactId> |
buyingyi | 8b301e7 | 2013-07-22 11:30:36 -0700 | [diff] [blame^] | 282 | <version>0.2.9</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 283 | <type>jar</type> |
| 284 | <scope>compile</scope> |
| 285 | </dependency> |
| 286 | <dependency> |
| 287 | <groupId>edu.uci.ics.hyracks</groupId> |
| 288 | <artifactId>hyracks-control-nc</artifactId> |
buyingyi | 8b301e7 | 2013-07-22 11:30:36 -0700 | [diff] [blame^] | 289 | <version>0.2.9</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 290 | <type>jar</type> |
| 291 | <scope>compile</scope> |
| 292 | </dependency> |
| 293 | <dependency> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 294 | <groupId>com.kenai.nbpwr</groupId> |
| 295 | <artifactId>org-apache-commons-io</artifactId> |
| 296 | <version>1.3.1-201002241208</version> |
| 297 | <type>nbm</type> |
| 298 | <scope>test</scope> |
| 299 | </dependency> |
| 300 | <dependency> |
| 301 | <groupId>edu.uci.ics.hyracks.examples</groupId> |
| 302 | <artifactId>hyracks-integration-tests</artifactId> |
buyingyi | 8b301e7 | 2013-07-22 11:30:36 -0700 | [diff] [blame^] | 303 | <version>0.2.9</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 304 | <scope>test</scope> |
| 305 | </dependency> |
| 306 | <dependency> |
| 307 | <groupId>com.sun.jersey</groupId> |
| 308 | <artifactId>jersey</artifactId> |
| 309 | <version>0.8-ea</version> |
| 310 | <type>jar</type> |
| 311 | <scope>test</scope> |
| 312 | </dependency> |
| 313 | <dependency> |
| 314 | <groupId>javax.servlet</groupId> |
| 315 | <artifactId>javax.servlet-api</artifactId> |
| 316 | <version>3.0.1</version> |
| 317 | <type>jar</type> |
| 318 | <scope>compile</scope> |
| 319 | </dependency> |
| 320 | <dependency> |
| 321 | <groupId>edu.uci.ics.hyracks</groupId> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 322 | <artifactId>hyracks-ipc</artifactId> |
buyingyi | 8b301e7 | 2013-07-22 11:30:36 -0700 | [diff] [blame^] | 323 | <version>0.2.9</version> |
buyingyi | 7f356c1 | 2012-10-07 00:23:17 +0000 | [diff] [blame] | 324 | <type>jar</type> |
| 325 | <scope>compile</scope> |
| 326 | </dependency> |
| 327 | </dependencies> |
| 328 | </project> |