buyingyi | dccd21f | 2013-09-11 11:36:08 -0700 | [diff] [blame] | 1 | <?xml version="1.0"?> |
Vinayak Borkar | 9c83200 | 2013-12-11 12:08:57 -0800 | [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 | dccd21f | 2013-09-11 11:36:08 -0700 | [diff] [blame] | 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | <parent> |
| 5 | <artifactId>pregelix</artifactId> |
| 6 | <groupId>edu.uci.ics.hyracks</groupId> |
Vinayak Borkar | b779e71 | 2013-12-11 12:09:09 -0800 | [diff] [blame^] | 7 | <version>0.2.11-SNAPSHOT</version> |
buyingyi | dccd21f | 2013-09-11 11:36:08 -0700 | [diff] [blame] | 8 | </parent> |
| 9 | |
| 10 | <artifactId>pregelix-benchmark</artifactId> |
| 11 | <name>pregelix-benchmark</name> |
| 12 | <url>http://maven.apache.org</url> |
buyingyi | 7b4cebf | 2013-09-14 14:21:18 -0700 | [diff] [blame] | 13 | |
| 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> |
buyingyi | 59d4e88 | 2013-09-20 18:10:13 -0700 | [diff] [blame] | 26 | |
| 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> |
buyingyi | 7b4cebf | 2013-09-14 14:21:18 -0700 | [diff] [blame] | 45 | </plugins> |
| 46 | </build> |
| 47 | |
| 48 | |
buyingyi | dccd21f | 2013-09-11 11:36:08 -0700 | [diff] [blame] | 49 | <dependencies> |
| 50 | <dependency> |
| 51 | <groupId>junit</groupId> |
| 52 | <artifactId>junit</artifactId> |
| 53 | <version>3.8.1</version> |
| 54 | <scope>test</scope> |
| 55 | </dependency> |
| 56 | <dependency> |
| 57 | <groupId>org.apache.giraph</groupId> |
| 58 | <artifactId>giraph-core</artifactId> |
| 59 | <version>1.0.0</version> |
| 60 | <scope>compile</scope> |
| 61 | </dependency> |
| 62 | <dependency> |
buyingyi | 59d4e88 | 2013-09-20 18:10:13 -0700 | [diff] [blame] | 63 | <groupId>org.apache.giraph</groupId> |
| 64 | <artifactId>giraph-examples</artifactId> |
| 65 | <version>1.0.0</version> |
| 66 | <scope>compile</scope> |
| 67 | </dependency> |
| 68 | <dependency> |
buyingyi | dccd21f | 2013-09-11 11:36:08 -0700 | [diff] [blame] | 69 | <groupId>edu.uci.ics.hyracks</groupId> |
| 70 | <artifactId>hyracks-hdfs-core</artifactId> |
Vinayak Borkar | b779e71 | 2013-12-11 12:09:09 -0800 | [diff] [blame^] | 71 | <version>0.2.11-SNAPSHOT</version> |
buyingyi | dccd21f | 2013-09-11 11:36:08 -0700 | [diff] [blame] | 72 | <type>jar</type> |
| 73 | <scope>compile</scope> |
| 74 | </dependency> |
| 75 | </dependencies> |
| 76 | </project> |