| <?xml version="1.0"?> |
| <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"> |
| <modelVersion>4.0.0</modelVersion> |
| <parent> |
| <artifactId>pregelix</artifactId> |
| <groupId>edu.uci.ics.hyracks</groupId> |
| <version>0.2.11-SNAPSHOT</version> |
| </parent> |
| |
| <artifactId>pregelix-benchmark</artifactId> |
| <name>pregelix-benchmark</name> |
| <url>http://maven.apache.org</url> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-compiler-plugin</artifactId> |
| <version>2.0.2</version> |
| <configuration> |
| <source>1.7</source> |
| <target>1.7</target> |
| <fork>true</fork> |
| </configuration> |
| </plugin> |
| |
| <plugin> |
| <artifactId>maven-assembly-plugin</artifactId> |
| <version>2.2-beta-5</version> |
| <configuration> |
| <descriptorRefs> |
| <descriptorRef>jar-with-dependencies</descriptorRef> |
| </descriptorRefs> |
| </configuration> |
| <executions> |
| <execution> |
| <id>make-my-jar-with-dependencies</id> |
| <phase>package</phase> |
| <goals> |
| <goal>single</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| |
| |
| <dependencies> |
| <dependency> |
| <groupId>junit</groupId> |
| <artifactId>junit</artifactId> |
| <version>3.8.1</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.giraph</groupId> |
| <artifactId>giraph-core</artifactId> |
| <version>1.0.0</version> |
| <scope>compile</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.giraph</groupId> |
| <artifactId>giraph-examples</artifactId> |
| <version>1.0.0</version> |
| <scope>compile</scope> |
| </dependency> |
| <dependency> |
| <groupId>edu.uci.ics.hyracks</groupId> |
| <artifactId>hyracks-hdfs-core</artifactId> |
| <version>0.2.11-SNAPSHOT</version> |
| <type>jar</type> |
| <scope>compile</scope> |
| </dependency> |
| </dependencies> |
| </project> |