blob: 09f315467994e49a2858de6920473da26a414806 [file] [log] [blame]
buyingyidccd21f2013-09-11 11:36:08 -07001<?xml version="1.0"?>
Vinayak Borkar9c832002013-12-11 12:08:57 -08002<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">
buyingyidccd21f2013-09-11 11:36:08 -07003 <modelVersion>4.0.0</modelVersion>
4 <parent>
5 <artifactId>pregelix</artifactId>
6 <groupId>edu.uci.ics.hyracks</groupId>
Vinayak Borkarb779e712013-12-11 12:09:09 -08007 <version>0.2.11-SNAPSHOT</version>
buyingyidccd21f2013-09-11 11:36:08 -07008 </parent>
9
10 <artifactId>pregelix-benchmark</artifactId>
11 <name>pregelix-benchmark</name>
12 <url>http://maven.apache.org</url>
buyingyi7b4cebf2013-09-14 14:21:18 -070013
14 <build>
15 <plugins>
16 <plugin>
17 <groupId>org.apache.maven.plugins</groupId>
18 <artifactId>maven-compiler-plugin</artifactId>
19 <version>2.0.2</version>
20 <configuration>
21 <source>1.7</source>
22 <target>1.7</target>
23 <fork>true</fork>
24 </configuration>
25 </plugin>
buyingyi59d4e882013-09-20 18:10:13 -070026
27 <plugin>
28 <artifactId>maven-assembly-plugin</artifactId>
29 <version>2.2-beta-5</version>
30 <configuration>
31 <descriptorRefs>
32 <descriptorRef>jar-with-dependencies</descriptorRef>
33 </descriptorRefs>
34 </configuration>
35 <executions>
36 <execution>
37 <id>make-my-jar-with-dependencies</id>
38 <phase>package</phase>
39 <goals>
40 <goal>single</goal>
41 </goals>
42 </execution>
43 </executions>
44 </plugin>
buyingyi7b4cebf2013-09-14 14:21:18 -070045 </plugins>
46 </build>
47
48
buyingyidccd21f2013-09-11 11:36:08 -070049 <dependencies>
50 <dependency>
buyingyidccd21f2013-09-11 11:36:08 -070051 <groupId>org.apache.giraph</groupId>
52 <artifactId>giraph-core</artifactId>
53 <version>1.0.0</version>
54 <scope>compile</scope>
55 </dependency>
56 <dependency>
buyingyi59d4e882013-09-20 18:10:13 -070057 <groupId>org.apache.giraph</groupId>
58 <artifactId>giraph-examples</artifactId>
59 <version>1.0.0</version>
60 <scope>compile</scope>
61 </dependency>
62 <dependency>
buyingyidccd21f2013-09-11 11:36:08 -070063 <groupId>edu.uci.ics.hyracks</groupId>
64 <artifactId>hyracks-hdfs-core</artifactId>
Vinayak Borkarb779e712013-12-11 12:09:09 -080065 <version>0.2.11-SNAPSHOT</version>
buyingyidccd21f2013-09-11 11:36:08 -070066 <type>jar</type>
67 <scope>compile</scope>
68 </dependency>
69 </dependencies>
70</project>