blob: df262df5728457f74a0eb0b8075d4899ed9e6080 [file] [log] [blame]
buyingyidccd21f2013-09-11 11:36:08 -07001<?xml version="1.0"?>
2<project
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
4 xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5 <modelVersion>4.0.0</modelVersion>
6 <parent>
7 <artifactId>pregelix</artifactId>
8 <groupId>edu.uci.ics.hyracks</groupId>
9 <version>0.2.10-SNAPSHOT</version>
10 </parent>
11
12 <artifactId>pregelix-benchmark</artifactId>
13 <name>pregelix-benchmark</name>
14 <url>http://maven.apache.org</url>
buyingyi7b4cebf2013-09-14 14:21:18 -070015
16 <build>
17 <plugins>
18 <plugin>
19 <groupId>org.apache.maven.plugins</groupId>
20 <artifactId>maven-compiler-plugin</artifactId>
21 <version>2.0.2</version>
22 <configuration>
23 <source>1.7</source>
24 <target>1.7</target>
25 <fork>true</fork>
26 </configuration>
27 </plugin>
28 </plugins>
29 </build>
30
31
buyingyidccd21f2013-09-11 11:36:08 -070032 <dependencies>
33 <dependency>
34 <groupId>junit</groupId>
35 <artifactId>junit</artifactId>
36 <version>3.8.1</version>
37 <scope>test</scope>
38 </dependency>
39 <dependency>
40 <groupId>org.apache.giraph</groupId>
41 <artifactId>giraph-core</artifactId>
42 <version>1.0.0</version>
43 <scope>compile</scope>
44 </dependency>
45 <dependency>
46 <groupId>edu.uci.ics.hyracks</groupId>
47 <artifactId>hyracks-hdfs-core</artifactId>
48 <version>0.2.10-SNAPSHOT</version>
49 <type>jar</type>
50 <scope>compile</scope>
51 </dependency>
52 </dependencies>
53</project>